NetMQ.Zyre.Zyre.PeerGroups C# (CSharp) Méthode

PeerGroups() public méthode

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
Résultat List
        public List<string> PeerGroups()
        {
            _actor.SendFrame("PEER GROUPS");
            var bytes = _actor.ReceiveFrameBytes();
            var result = Serialization.BinaryDeserialize<List<string>>(bytes);
            return result;
        }