Contents

serviceConnectionWithName:rootObject:

Creates and returns a new connection object representing a vended service on the default system port name server.

Declaration

+ (instancetype) serviceConnectionWithName:(NSString *) name rootObject:(id) root;

Parameters

  • name:

    The name of the service you want to publish.

  • root:

    The object to use as the root object for the published service. This is the object vended by the connection.

Return Value

An NSConnection object representing the vended service or nil if there was a problem setting up the connection object.

Discussion

This method creates the server-side of a connection object and registers it with the default system port name server. Clients wishing to connect to this service can request a communications port from the same port server and use that port to communicate.

See Also

Related Documentation

Vending a Service