Package apple.foundation.protocol
Interface NSXPCListenerDelegate
-
public interface NSXPCListenerDelegate
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleanlistenerShouldAcceptNewConnection(NSXPCListener listener, NSXPCConnection newConnection)Accept or reject a new connection to the listener.
-
-
-
Method Detail
-
listenerShouldAcceptNewConnection
default boolean listenerShouldAcceptNewConnection(NSXPCListener listener, NSXPCConnection newConnection)
Accept or reject a new connection to the listener. This is a good time to set up properties on the new connection, like its exported object and interfaces. If a value of NO is returned, the connection object will be invalidated after this method returns. Be sure to resume the new connection and return YES when you are finished configuring it and are ready to receive messages. You may delay resuming the connection if you wish, but still return YES from this method if you want the connection to be accepted.
-
-