RemoteCmd Class Reference

The RemoteCmd JavaScript class. Send one sided commands to a remote host. More...

Public Slots

bool connect (const String &machine, int port)
 
bool connectTimeout (const String &machine, int port, int timeout)
 
bool send (const String &cmd)
 
bool receive (int timeout)
 
bool sendMsg (const String &msg)
 
bool receiveMsg (int timeout)
 
void disconnect ()
 
bool connected () const
 
String lastReceived () const
 

Public Member Functions

 RemoteCmd ()
 

Detailed Description

The RemoteCmd JavaScript class. Send one sided commands to a remote host.

RemoteCmd allows user to send one sided commands to a remote host

Constructor & Destructor Documentation

◆ RemoteCmd()

RemoteCmd::RemoteCmd ( )

Create a new RemoteCmd remote command object.

Member Function Documentation

◆ connect

bool RemoteCmd::connect ( const String &  machine,
int  port 
)
slot

Connect to a remote machine.

Parameters
machineString Machine name
portPort number
Returns
Success/Failure of operation

◆ connected

bool RemoteCmd::connected ( ) const
slot

Retrieve connection status

Returns
Status

◆ connectTimeout

bool RemoteCmd::connectTimeout ( const String &  machine,
int  port,
int  timeout 
)
slot

Connect to a remote machine.

Parameters
machineString Machine name
portPort number
timeoutTimeout value
Returns
Success/Failure of operation

◆ disconnect

void RemoteCmd::disconnect ( )
slot

Disconnect from remote machine.

◆ lastReceived

String RemoteCmd::lastReceived ( ) const
slot

Retrieve last received response from server.

Returns
Response String

◆ receive

bool RemoteCmd::receive ( int  timeout)
slot

Query response from server.

Parameters
timeoutTime out value in milliseconds. -1 for infinity.
Returns
Success/Failure of operation

◆ receiveMsg

bool RemoteCmd::receiveMsg ( int  timeout)
slot

Query a packaged response from server.

Parameters
timeoutTime out value in milliseconds. -1 for infinity.
Returns
Success/Failure of operation

◆ send

bool RemoteCmd::send ( const String &  cmd)
slot

Send a command to remote machine.

Parameters
cmdString command
Returns
Success/Failure of operation

◆ sendMsg

bool RemoteCmd::sendMsg ( const String &  msg)
slot

Send a packaged message to remote machine.

Parameters
msgString message
Returns
Success/Failure of operation