TipcConnClient user class for a client connection
The TipcConnClient class calls the C API function TipcConnClientCreate at construction, passing the resulting T_IPC_CONN handle up to the TipcConn base class, where it is managed.
None
Tobj; see the TIBCO SmartSockets Application Programming Interface for information on TipcConnCreate and TipcConnClientCreate
This code fragment creates a client connection, then sends an INFO message to the other side:
TipcConn *conn = new TipcConnClient("tcp:_node:5252"); if (!conn) { // error } TipcMsg msg(T_MT_INFO); msg.AppendStr("hiya"); conn->Send(msg);
TIBCO SmartSockets™ cxxipc Class Library Software Release 6.8, July 2006 Copyright © TIBCO Software Inc. All rights reserved www.tibco.com |