NetMQ.Core.Ctx.GetReaper C# (CSharp) Method

GetReaper() public method

Returns reaper thread object.
public GetReaper ( ) : ZObject
return ZObject
        public ZObject GetReaper()
        {
            return m_reaper;
        }

Usage Example

Example #1
0
 protected void SendReap([NotNull] SocketBase socket)
 {
     SendCommand(new Command(m_ctx.GetReaper(), CommandType.Reap, socket));
 }