Method | Description | |
---|---|---|
Communicator ( string name ) : System |
Constructs a communicator out of the given pipe-name
|
|
connect ( ) : bool |
Checks if the pipe is ready, might block
|
|
sendCall ( string call, string responsetype ) : |
Make the call
|
|
sendCall ( string call, string param, string responsetype ) : |
Make a call with one parameter
|
public Communicator ( string name ) : System | ||
name | string | The pipe to build |
return | System |
public sendCall ( string call, string responsetype ) : |
||
call | string | Constant function represenation as given in calls struct. |
responsetype | string | The expected response as defined in Responses.RESPONSETYPE |
return |
public sendCall ( string call, string param, string responsetype ) : |
||
call | string | The function name as represented in calls struct |
param | string | The parameter to send |
responsetype | string | The response type expected as defined in Responses.RESPONSETYPE |
return |