Package org.eclipse.net4j.acceptor
Schnittstelle IAcceptor
- Alle Superschnittstellen:
org.eclipse.net4j.util.collection.Closeable
,org.eclipse.net4j.util.container.IContainer<IConnector>
,org.eclipse.net4j.util.event.INotifier
,org.eclipse.net4j.util.properties.IPropertiesContainer
- Alle bekannten Unterschnittstellen:
IJVMAcceptor
,InternalAcceptor
,ITCPAcceptor
,IWSAcceptor
- Alle bekannten Implementierungsklassen:
Acceptor
public interface IAcceptor
extends org.eclipse.net4j.util.container.IContainer<IConnector>, org.eclipse.net4j.util.properties.IPropertiesContainer, org.eclipse.net4j.util.collection.Closeable
Accepts incoming connection requests from
client
connectors
and creates
the appropriate server
connectors.
Since the process of accepting connection requests is heavily dependent on the implementation of the respective connectors the only public API is introspection and notification.
This interface is not intended to be implemented by clients. Service providers must extend the abstract
Acceptor
class.
- Autor:
- Eike Stepper
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
-
Verschachtelte Klassen - Übersicht
Von Schnittstelle geerbte verschachtelte Klassen/Schnittstellen org.eclipse.net4j.util.container.IContainer
org.eclipse.net4j.util.container.IContainer.Modifiable<E>, org.eclipse.net4j.util.container.IContainer.Persistable<E>, org.eclipse.net4j.util.container.IContainer.Persistence<E>
Von Schnittstelle geerbte verschachtelte Klassen/Schnittstellen org.eclipse.net4j.util.event.INotifier
org.eclipse.net4j.util.event.INotifier.INotifier2
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungReturns an array of the connectors that have been accepted by this acceptor and not been closed since.Von Schnittstelle geerbte Methoden org.eclipse.net4j.util.collection.Closeable
close, isClosed
Von Schnittstelle geerbte Methoden org.eclipse.net4j.util.container.IContainer
getElements, isEmpty
Von Schnittstelle geerbte Methoden org.eclipse.net4j.util.event.INotifier
addListener, getListeners, hasListeners, removeListener
Von Schnittstelle geerbte Methoden org.eclipse.net4j.util.properties.IPropertiesContainer
properties
-
Methodendetails
-
getAcceptedConnectors
IConnector[] getAcceptedConnectors()Returns an array of the connectors that have been accepted by this acceptor and not been closed since.
-