NSXPCListenerDelegate Protocol Reference
| Conforms to | |
| Framework | /System/Library/Frameworks/Foundation.framework |
| Availability | Available in OS X v10.8 and later. |
| Declared in | NSXPCConnection.h |
Overview
Protocol for delegates to the NSXPC listener class that allows you to accept or reject new connections to the listener.
Instance Methods
listener:shouldAcceptNewConnection:
Accepts or rejects a new connection to the listener.
- (BOOL)listener:(NSXPCListener *)listener
shouldAcceptNewConnection:(NSXPCConnection *)newConnection;
Discussion
To accept the connection, first configure the connection if desired, then call resume on the new connection, then return YES.
To reject the connect, return a value of NO. This causes the connection object to be invalidated.
In this method, you can also set up properties on the connection object, such as its exported object and interfaces. Be sure to call resume when you are finished configuring the connection object and are ready for it to receive messages.
Availability
- Available in OS X v10.8 and later.
Declared In
NSXPCConnection.h© 2012 Apple Inc. All Rights Reserved. (Last updated: 2012-07-23)