C# Class Hazelcast.Remote.RemoteController.Client

Inheritance: IDisposable, Iface
显示文件 Open project: hazelcast/hazelcast-remote-controller Class Usage Examples

Protected Properties

Property Type Description
iprot_ Thrift.Protocol.TProtocol
oprot_ Thrift.Protocol.TProtocol
seqid_ int

Public Methods

Method Description
Begin_clean ( AsyncCallback callback, object state ) : IAsyncResult
Begin_createCluster ( AsyncCallback callback, object state, string hzVersion, string xmlconfig ) : IAsyncResult
Begin_executeOnController ( AsyncCallback callback, object state, string clusterId, string script, Lang lang ) : IAsyncResult
Begin_exit ( AsyncCallback callback, object state ) : IAsyncResult
Begin_mergeMemberToCluster ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
Begin_ping ( AsyncCallback callback, object state ) : IAsyncResult
Begin_resumeMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
Begin_shutdownCluster ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
Begin_shutdownMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
Begin_splitMemberFromCluster ( AsyncCallback callback, object state, string memberId ) : IAsyncResult
Begin_startMember ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
Begin_suspendMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
Begin_terminateCluster ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
Begin_terminateMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
Client ( TProtocol prot ) : System
Client ( TProtocol iprot, TProtocol oprot ) : System
Dispose ( ) : void
End_clean ( IAsyncResult asyncResult ) : bool
End_createCluster ( IAsyncResult asyncResult ) : Cluster
End_executeOnController ( IAsyncResult asyncResult ) : Response
End_exit ( IAsyncResult asyncResult ) : bool
End_mergeMemberToCluster ( IAsyncResult asyncResult ) : Cluster
End_ping ( IAsyncResult asyncResult ) : bool
End_resumeMember ( IAsyncResult asyncResult ) : bool
End_shutdownCluster ( IAsyncResult asyncResult ) : bool
End_shutdownMember ( IAsyncResult asyncResult ) : bool
End_splitMemberFromCluster ( IAsyncResult asyncResult ) : Cluster
End_startMember ( IAsyncResult asyncResult ) : Member
End_suspendMember ( IAsyncResult asyncResult ) : bool
End_terminateCluster ( IAsyncResult asyncResult ) : bool
End_terminateMember ( IAsyncResult asyncResult ) : bool
clean ( ) : bool
createCluster ( string hzVersion, string xmlconfig ) : Cluster
executeOnController ( string clusterId, string script, Lang lang ) : Response
exit ( ) : bool
mergeMemberToCluster ( string clusterId, string memberId ) : Cluster
ping ( ) : bool
recv_clean ( ) : bool
recv_createCluster ( ) : Cluster
recv_executeOnController ( ) : Response
recv_exit ( ) : bool
recv_mergeMemberToCluster ( ) : Cluster
recv_ping ( ) : bool
recv_resumeMember ( ) : bool
recv_shutdownCluster ( ) : bool
recv_shutdownMember ( ) : bool
recv_splitMemberFromCluster ( ) : Cluster
recv_startMember ( ) : Member
recv_suspendMember ( ) : bool
recv_terminateCluster ( ) : bool
recv_terminateMember ( ) : bool
resumeMember ( string clusterId, string memberId ) : bool
send_clean ( AsyncCallback callback, object state ) : IAsyncResult
send_clean ( ) : void
send_createCluster ( AsyncCallback callback, object state, string hzVersion, string xmlconfig ) : IAsyncResult
send_createCluster ( string hzVersion, string xmlconfig ) : void
send_executeOnController ( AsyncCallback callback, object state, string clusterId, string script, Lang lang ) : IAsyncResult
send_executeOnController ( string clusterId, string script, Lang lang ) : void
send_exit ( AsyncCallback callback, object state ) : IAsyncResult
send_exit ( ) : void
send_mergeMemberToCluster ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
send_mergeMemberToCluster ( string clusterId, string memberId ) : void
send_ping ( AsyncCallback callback, object state ) : IAsyncResult
send_ping ( ) : void
send_resumeMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
send_resumeMember ( string clusterId, string memberId ) : void
send_shutdownCluster ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
send_shutdownCluster ( string clusterId ) : void
send_shutdownMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
send_shutdownMember ( string clusterId, string memberId ) : void
send_splitMemberFromCluster ( AsyncCallback callback, object state, string memberId ) : IAsyncResult
send_splitMemberFromCluster ( string memberId ) : void
send_startMember ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
send_startMember ( string clusterId ) : void
send_suspendMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
send_suspendMember ( string clusterId, string memberId ) : void
send_terminateCluster ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
send_terminateCluster ( string clusterId ) : void
send_terminateMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
send_terminateMember ( string clusterId, string memberId ) : void
shutdownCluster ( string clusterId ) : bool
shutdownMember ( string clusterId, string memberId ) : bool
splitMemberFromCluster ( string memberId ) : Cluster
startMember ( string clusterId ) : Member
suspendMember ( string clusterId, string memberId ) : bool
terminateCluster ( string clusterId ) : bool
terminateMember ( string clusterId, string memberId ) : bool

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Begin_clean() public method

public Begin_clean ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult

Begin_createCluster() public method

public Begin_createCluster ( AsyncCallback callback, object state, string hzVersion, string xmlconfig ) : IAsyncResult
callback AsyncCallback
state object
hzVersion string
xmlconfig string
return IAsyncResult

Begin_executeOnController() public method

public Begin_executeOnController ( AsyncCallback callback, object state, string clusterId, string script, Lang lang ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
script string
lang Lang
return IAsyncResult

Begin_exit() public method

public Begin_exit ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult

Begin_mergeMemberToCluster() public method

public Begin_mergeMemberToCluster ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

Begin_ping() public method

public Begin_ping ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult

Begin_resumeMember() public method

public Begin_resumeMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

Begin_shutdownCluster() public method

public Begin_shutdownCluster ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
return IAsyncResult

Begin_shutdownMember() public method

public Begin_shutdownMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

Begin_splitMemberFromCluster() public method

public Begin_splitMemberFromCluster ( AsyncCallback callback, object state, string memberId ) : IAsyncResult
callback AsyncCallback
state object
memberId string
return IAsyncResult

Begin_startMember() public method

public Begin_startMember ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
return IAsyncResult

Begin_suspendMember() public method

public Begin_suspendMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

Begin_terminateCluster() public method

public Begin_terminateCluster ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
return IAsyncResult

Begin_terminateMember() public method

public Begin_terminateMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

Client() public method

public Client ( TProtocol prot ) : System
prot Thrift.Protocol.TProtocol
return System

Client() public method

public Client ( TProtocol iprot, TProtocol oprot ) : System
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return System

Dispose() public method

public Dispose ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

End_clean() public method

public End_clean ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

End_createCluster() public method

public End_createCluster ( IAsyncResult asyncResult ) : Cluster
asyncResult IAsyncResult
return Cluster

End_executeOnController() public method

public End_executeOnController ( IAsyncResult asyncResult ) : Response
asyncResult IAsyncResult
return Response

End_exit() public method

public End_exit ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

End_mergeMemberToCluster() public method

public End_mergeMemberToCluster ( IAsyncResult asyncResult ) : Cluster
asyncResult IAsyncResult
return Cluster

End_ping() public method

public End_ping ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

End_resumeMember() public method

public End_resumeMember ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

End_shutdownCluster() public method

public End_shutdownCluster ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

End_shutdownMember() public method

public End_shutdownMember ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

End_splitMemberFromCluster() public method

public End_splitMemberFromCluster ( IAsyncResult asyncResult ) : Cluster
asyncResult IAsyncResult
return Cluster

End_startMember() public method

public End_startMember ( IAsyncResult asyncResult ) : Member
asyncResult IAsyncResult
return Member

End_suspendMember() public method

public End_suspendMember ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

End_terminateCluster() public method

public End_terminateCluster ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

End_terminateMember() public method

public End_terminateMember ( IAsyncResult asyncResult ) : bool
asyncResult IAsyncResult
return bool

clean() public method

public clean ( ) : bool
return bool

createCluster() public method

public createCluster ( string hzVersion, string xmlconfig ) : Cluster
hzVersion string
xmlconfig string
return Cluster

executeOnController() public method

public executeOnController ( string clusterId, string script, Lang lang ) : Response
clusterId string
script string
lang Lang
return Response

exit() public method

public exit ( ) : bool
return bool

mergeMemberToCluster() public method

public mergeMemberToCluster ( string clusterId, string memberId ) : Cluster
clusterId string
memberId string
return Cluster

ping() public method

public ping ( ) : bool
return bool

recv_clean() public method

public recv_clean ( ) : bool
return bool

recv_createCluster() public method

public recv_createCluster ( ) : Cluster
return Cluster

recv_executeOnController() public method

public recv_executeOnController ( ) : Response
return Response

recv_exit() public method

public recv_exit ( ) : bool
return bool

recv_mergeMemberToCluster() public method

public recv_mergeMemberToCluster ( ) : Cluster
return Cluster

recv_ping() public method

public recv_ping ( ) : bool
return bool

recv_resumeMember() public method

public recv_resumeMember ( ) : bool
return bool

recv_shutdownCluster() public method

public recv_shutdownCluster ( ) : bool
return bool

recv_shutdownMember() public method

public recv_shutdownMember ( ) : bool
return bool

recv_splitMemberFromCluster() public method

public recv_splitMemberFromCluster ( ) : Cluster
return Cluster

recv_startMember() public method

public recv_startMember ( ) : Member
return Member

recv_suspendMember() public method

public recv_suspendMember ( ) : bool
return bool

recv_terminateCluster() public method

public recv_terminateCluster ( ) : bool
return bool

recv_terminateMember() public method

public recv_terminateMember ( ) : bool
return bool

resumeMember() public method

public resumeMember ( string clusterId, string memberId ) : bool
clusterId string
memberId string
return bool

send_clean() public method

public send_clean ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult

send_clean() public method

public send_clean ( ) : void
return void

send_createCluster() public method

public send_createCluster ( AsyncCallback callback, object state, string hzVersion, string xmlconfig ) : IAsyncResult
callback AsyncCallback
state object
hzVersion string
xmlconfig string
return IAsyncResult

send_createCluster() public method

public send_createCluster ( string hzVersion, string xmlconfig ) : void
hzVersion string
xmlconfig string
return void

send_executeOnController() public method

public send_executeOnController ( AsyncCallback callback, object state, string clusterId, string script, Lang lang ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
script string
lang Lang
return IAsyncResult

send_executeOnController() public method

public send_executeOnController ( string clusterId, string script, Lang lang ) : void
clusterId string
script string
lang Lang
return void

send_exit() public method

public send_exit ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult

send_exit() public method

public send_exit ( ) : void
return void

send_mergeMemberToCluster() public method

public send_mergeMemberToCluster ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

send_mergeMemberToCluster() public method

public send_mergeMemberToCluster ( string clusterId, string memberId ) : void
clusterId string
memberId string
return void

send_ping() public method

public send_ping ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback
state object
return IAsyncResult

send_ping() public method

public send_ping ( ) : void
return void

send_resumeMember() public method

public send_resumeMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

send_resumeMember() public method

public send_resumeMember ( string clusterId, string memberId ) : void
clusterId string
memberId string
return void

send_shutdownCluster() public method

public send_shutdownCluster ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
return IAsyncResult

send_shutdownCluster() public method

public send_shutdownCluster ( string clusterId ) : void
clusterId string
return void

send_shutdownMember() public method

public send_shutdownMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

send_shutdownMember() public method

public send_shutdownMember ( string clusterId, string memberId ) : void
clusterId string
memberId string
return void

send_splitMemberFromCluster() public method

public send_splitMemberFromCluster ( AsyncCallback callback, object state, string memberId ) : IAsyncResult
callback AsyncCallback
state object
memberId string
return IAsyncResult

send_splitMemberFromCluster() public method

public send_splitMemberFromCluster ( string memberId ) : void
memberId string
return void

send_startMember() public method

public send_startMember ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
return IAsyncResult

send_startMember() public method

public send_startMember ( string clusterId ) : void
clusterId string
return void

send_suspendMember() public method

public send_suspendMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

send_suspendMember() public method

public send_suspendMember ( string clusterId, string memberId ) : void
clusterId string
memberId string
return void

send_terminateCluster() public method

public send_terminateCluster ( AsyncCallback callback, object state, string clusterId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
return IAsyncResult

send_terminateCluster() public method

public send_terminateCluster ( string clusterId ) : void
clusterId string
return void

send_terminateMember() public method

public send_terminateMember ( AsyncCallback callback, object state, string clusterId, string memberId ) : IAsyncResult
callback AsyncCallback
state object
clusterId string
memberId string
return IAsyncResult

send_terminateMember() public method

public send_terminateMember ( string clusterId, string memberId ) : void
clusterId string
memberId string
return void

shutdownCluster() public method

public shutdownCluster ( string clusterId ) : bool
clusterId string
return bool

shutdownMember() public method

public shutdownMember ( string clusterId, string memberId ) : bool
clusterId string
memberId string
return bool

splitMemberFromCluster() public method

public splitMemberFromCluster ( string memberId ) : Cluster
memberId string
return Cluster

startMember() public method

public startMember ( string clusterId ) : Member
clusterId string
return Member

suspendMember() public method

public suspendMember ( string clusterId, string memberId ) : bool
clusterId string
memberId string
return bool

terminateCluster() public method

public terminateCluster ( string clusterId ) : bool
clusterId string
return bool

terminateMember() public method

public terminateMember ( string clusterId, string memberId ) : bool
clusterId string
memberId string
return bool

Property Details

iprot_ protected_oe property

protected TProtocol,Thrift.Protocol iprot_
return Thrift.Protocol.TProtocol

oprot_ protected_oe property

protected TProtocol,Thrift.Protocol oprot_
return Thrift.Protocol.TProtocol

seqid_ protected_oe property

protected int seqid_
return int