C# 클래스 Org.IdentityConnectors.Framework.Server.ConnectorServer

Connector server interface.
파일 보기 프로젝트 열기: Tirasa/ConnId 1 사용 예제들

공개 메소드들

메소드 설명
DumpRequests ( ) : void

Produces a thread dump of all pending requests

IsStarted ( ) : bool

Return true if the server is started.

Note that started is a logical state (start method has been called). It does not necessarily reflect the health of the server

NewInstance ( ) : ConnectorServer

Get the singleton instance of the ConnectorServer.

Start ( ) : void

Starts the server.

All server settings must be configured prior to calling. The following methods are required to be called: Port KeyHash

StartTime ( ) : long

Gets the time when the servers was started last time.

Stop ( ) : void

Stops the server gracefully.

Returns when all in-progress connections have been serviced.

비공개 메소드들

메소드 설명
AssertNotStarted ( ) : void

메소드 상세

DumpRequests() 공개 추상적인 메소드

Produces a thread dump of all pending requests
public abstract DumpRequests ( ) : void
리턴 void

IsStarted() 공개 추상적인 메소드

Return true if the server is started.
Note that started is a logical state (start method has been called). It does not necessarily reflect the health of the server
public abstract IsStarted ( ) : bool
리턴 bool

NewInstance() 공개 정적인 메소드

Get the singleton instance of the ConnectorServer.
public static NewInstance ( ) : ConnectorServer
리턴 ConnectorServer

Start() 공개 추상적인 메소드

Starts the server.
All server settings must be configured prior to calling. The following methods are required to be called: Port KeyHash
public abstract Start ( ) : void
리턴 void

StartTime() 공개 추상적인 메소드

Gets the time when the servers was started last time.
public abstract StartTime ( ) : long
리턴 long

Stop() 공개 추상적인 메소드

Stops the server gracefully.
Returns when all in-progress connections have been serviced.
public abstract Stop ( ) : void
리턴 void