Stops a work thread for receiving asynchronous messages.
Syntax
- C#: public void cancelAsynchronousListener()
- Ruby: cancelAsynchronousListener()
- Python: cancelAsynchronousListener()
Parameters
None
Return
None
Examples
C#
1 2 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); cltComm.cancelAsynchronousListener(); |
Ruby
1 2 |
cltComm = ClientTcpCommunication.new cltComm.cancelAsynchronousListener |
Python
1 2 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() clt_comm.cancelAsynchronousListener() |