NetMQ.Zyre.Zyre.PeerGroups C# (CSharp) 메소드

PeerGroups() 공개 메소드

Return list of groups known through connected peers. The list includes every peer group ever seen by this instance. The list can grow but it can never shrink.
public PeerGroups ( ) : List
리턴 List
        public List<string> PeerGroups()
        {
            _actor.SendFrame("PEER GROUPS");
            var bytes = _actor.ReceiveFrameBytes();
            var result = Serialization.BinaryDeserialize<List<string>>(bytes);
            return result;
        }