public Push(Ctx parent, int tid, int sid) : base(parent, tid, sid) { m_options.SocketType = ZmqSocketType.Push; lb = new LB(); }
public Push(Ctx parent, int threadId, int sid) : base(parent, threadId, sid) { m_options.SocketType = ZmqSocketType.Push; lb = new LB(); }
// Holds the prefetched message. public Dealer(Ctx parent, int tid, int sid) : base(parent, tid, sid) { m_prefetched = false; m_options.SocketType = ZmqSocketType.Dealer; m_fq = new FQ(); m_lb = new LB(); // TODO: Uncomment the following line when DEALER will become true DEALER // rather than generic dealer socket. // If the socket is closing we can drop all the outbound requests. There'll // be noone to receive the replies anyway. // options.delay_on_close = false; m_options.RecvIdentity = true; }
// Holds the prefetched message. public Dealer(Ctx parent, int threadId, int sid) : base(parent, threadId, sid) { m_prefetched = false; m_options.SocketType = ZmqSocketType.Dealer; m_fq = new FQ(); m_lb = new LB(); // TODO: Uncomment the following line when DEALER will become true DEALER // rather than generic dealer socket. // If the socket is closing we can drop all the outbound requests. There'll // be noone to receive the replies anyway. // options.delay_on_close = false; m_options.RecvIdentity = true; }