C# 클래스 NetMQ.NetMQContext

Context class of the NetMQ, you should have only one context in your application
상속: IDisposable
파일 보기 프로젝트 열기: NetMQ/NetMQ3-x 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void

Close (or terminate) this context.

Terminate ( ) : void

Close (terminate) this context.

May be safely called even if already terminated. This must not be called on a context that is already closed otherwise an ObjectDisposedException is thrown.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Close (or terminate) this context.

비공개 메소드들

메소드 설명
Create ( ) : NetMQContext
CreateDealerSocket ( ) : DealerSocket
CreateHandle ( ZmqSocketType socketType ) : NetMQ.zmq.SocketBase
CreateMonitorSocket ( [ endpoint ) : NetMQMonitor
CreatePairSocket ( ) : PairSocket
CreatePublisherSocket ( ) : PublisherSocket
CreatePullSocket ( ) : PullSocket
CreatePushSocket ( ) : PushSocket
CreateRequestSocket ( ) : RequestSocket
CreateResponseSocket ( ) : ResponseSocket
CreateRouterSocket ( ) : RouterSocket
CreateSocket ( ZmqSocketType socketType ) : NetMQSocket
CreateStreamSocket ( ) : NetMQ.Sockets.StreamSocket
CreateSubscriberSocket ( ) : SubscriberSocket
CreateXPublisherSocket ( ) : XPublisherSocket
CreateXSubscriberSocket ( ) : XSubscriberSocket
NetMQContext ( [ ctx ) : System

메소드 상세

Dispose() 공개 메소드

Close (or terminate) this context.
public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

Close (or terminate) this context.
protected Dispose ( bool disposing ) : void
disposing bool true if releasing managed resources
리턴 void

Terminate() 공개 메소드

Close (terminate) this context.
May be safely called even if already terminated. This must not be called on a context that is already closed otherwise an ObjectDisposedException is thrown.
public Terminate ( ) : void
리턴 void