Kafka.Client.Cluster.Broker.Broker C# (CSharp) Method

Broker() public method

Initializes a new instance of the Broker class.
public Broker ( int id, string creatorId, string host, int port )
id int /// The broker id. ///
creatorId string /// The broker creator id. ///
host string /// The broker host. ///
port int /// The broker port. ///
        public Broker(int id, string creatorId, string host, int port)
        {
            this.Id = id;
            this.CreatorId = creatorId;
            this.Host = host;
            this.Port = port;
        }
Broker