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 - ÜbersichtVon Schnittstelle geerbte verschachtelte Klassen/Schnittstellen org.eclipse.net4j.util.container.IContainerorg.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.INotifierorg.eclipse.net4j.util.event.INotifier.INotifier2
- 
MethodenübersichtModifizierer 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.Closeableclose, isClosedVon Schnittstelle geerbte Methoden org.eclipse.net4j.util.container.IContainergetElements, isEmptyVon Schnittstelle geerbte Methoden org.eclipse.net4j.util.event.INotifieraddListener, getListeners, hasListeners, removeListenerVon Schnittstelle geerbte Methoden org.eclipse.net4j.util.properties.IPropertiesContainerproperties
- 
Methodendetails- 
getAcceptedConnectorsIConnector[] getAcceptedConnectors()Returns an array of the connectors that have been accepted by this acceptor and not been closed since.
 
-