This message type must be one of the standard SmartSockets message types, or a type previously defined with createMt. The standard SmartSockets message types have numeric constants defined in TipcMt.
Example:
// look up the message type number 500 TipcMt mt = TipcSvc.lookupMt(500);
Returns the message type indexed by name. This message type must be one of the standard SmartSockets message types, or a type previously defined with createMt. Example:
// look up the message type named "foo" TipcMt mt = TipcSvc.lookupMt("foo");
public static TipcMt lookupMt(string);
Returns a message type indexed by number. This message type must be one of the standard SmartSockets message types, or a type previously defined with createMt. The standard SmartSockets message types have numeric constants defined in TipcMt. Example:
// look up the message type number 500 TipcMt mt = TipcSvc.lookupMt(500);
public static TipcMt lookupMt(int);
TipcSvc Class | TipcSvc Members | TIBCO.SMARTSOCKETS Namespace | TipcMt | createMt | lookupMt