SmartSockets .NET Class Library

TipcSvc Class

A static factory class for the TipcMt, TipcMsg, TipcConnClient, TipcConnServer, and TipcSrv interfaces. Objects of the required concrete classes that implement these interfaces are created with this class.

For example, to create a connection to the RTserver and to create and send a SmartSockets message on the connection, you would do the following:

            // get the connection to the RTserver from the factory
            TipcSrv srv = TipcSvc.Srv;
            
            // create an INFO message from the factory
            TipcMsg msg = TipcSvc.createMsg(TipcMt_Fields.INFO);
            
            // publish the INFO message to the "/foo" subject on the connection
            msg.setDest("/foo");
            srv.send(msg);
            

For a list of all members of this type, see TipcSvc Members.

System.Object
   TipcSvc

public class TipcSvc

Requirements

Namespace: TIBCO.SMARTSOCKETS Namespace

Assembly: TIBCO.SS.dll

See Also

TipcSvc Members | TIBCO.SMARTSOCKETS Namespace


Copyright © TIBCO Software Inc. All rights reserved