Module org.refcodes.io.ext.observer
Package org.refcodes.io.ext.observer
Class ObservableConnectionReceiver<DATA extends Serializable,CON>
java.lang.Object
org.refcodes.io.ext.observer.ObservableConnectionReceiver<DATA,CON>
- Type Parameters:
DATA
- The type of the datagram to be operated with.CON
- The type of the connection to be used.
- All Implemented Interfaces:
org.refcodes.component.Closable
,org.refcodes.component.Closable.CloseAutomaton
,org.refcodes.component.ClosedAccessor
,org.refcodes.component.Component
,org.refcodes.component.ConnectableComponent
,org.refcodes.component.ConnectableComponent.ConnectableAutomaton
,org.refcodes.component.ConnectionComponent<CON>
,org.refcodes.component.ConnectionComponent.ConnectionAutomaton<CON>
,org.refcodes.component.ConnectionOpenable<CON>
,org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<CON>
,org.refcodes.component.ConnectionStatusAccessor
,org.refcodes.component.Destroyable
,org.refcodes.component.OpenedAccessor
,org.refcodes.io.Availability
,org.refcodes.io.ConnectionDatagramsReceiver<DATA,
,CON> org.refcodes.io.DatagramDestination<DATA>
,org.refcodes.io.DatagramReceiver<DATA>
,org.refcodes.io.DatagramsDestination<DATA>
,org.refcodes.io.DatagramsReceiver<DATA>
,org.refcodes.io.Receivable
,org.refcodes.observer.Observable<org.refcodes.component.ext.observer.ConnectionObserver<CON>>
public class ObservableConnectionReceiver<DATA extends Serializable,CON>
extends Object
implements org.refcodes.io.ConnectionDatagramsReceiver<DATA,CON>, org.refcodes.observer.Observable<org.refcodes.component.ext.observer.ConnectionObserver<CON>>, org.refcodes.component.Component
The
ObservableConnectionReceiver
extends the
ConnectionDatagramsReceiver
with ConnectionObserver
functionality.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.component.Closable
org.refcodes.component.Closable.CloseAutomaton, org.refcodes.component.Closable.CloseBuilder<B extends org.refcodes.component.Closable.CloseBuilder<B>>
Nested classes/interfaces inherited from interface org.refcodes.component.ClosedAccessor
org.refcodes.component.ClosedAccessor.ClosedMutator, org.refcodes.component.ClosedAccessor.ClosedProperty
Nested classes/interfaces inherited from interface org.refcodes.component.ConnectableComponent
org.refcodes.component.ConnectableComponent.ConnectableAutomaton
Nested classes/interfaces inherited from interface org.refcodes.component.ConnectionComponent
org.refcodes.component.ConnectionComponent.ConnectionAutomaton<CON extends Object>, org.refcodes.component.ConnectionComponent.ConnectionComponentBuilder<CON extends Object,
B extends org.refcodes.component.ConnectionComponent.ConnectionComponentBuilder<CON, B>> Nested classes/interfaces inherited from interface org.refcodes.component.ConnectionOpenable
org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<CON extends Object>, org.refcodes.component.ConnectionOpenable.ConnectionOpenBuilder<CON extends Object,
B extends org.refcodes.component.ConnectionOpenable.ConnectionOpenBuilder<CON, B>> Nested classes/interfaces inherited from interface org.refcodes.component.ConnectionStatusAccessor
org.refcodes.component.ConnectionStatusAccessor.ConnectionStatusMutator, org.refcodes.component.ConnectionStatusAccessor.ConnectionStatusProperty
Nested classes/interfaces inherited from interface org.refcodes.component.Destroyable
org.refcodes.component.Destroyable.DestroyAutomaton
Nested classes/interfaces inherited from interface org.refcodes.component.OpenedAccessor
org.refcodes.component.OpenedAccessor.OpenedMutator, org.refcodes.component.OpenedAccessor.OpenedProperty
-
Constructor Summary
ConstructorDescriptionObservableConnectionReceiver
(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver) Constructs aObservableConnectionReceiver
with the given attributes.ObservableConnectionReceiver
(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, CON aSource) Constructs aObservableConnectionReceiver
with the given attributes.ObservableConnectionReceiver
(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, CON aSource, ExecutorService aExecutorService, org.refcodes.controlflow.ExecutionStrategy aExecutionStrategy) Constructs aObservableConnectionReceiver
with the given attributes.ObservableConnectionReceiver
(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, ExecutorService aExecutorService, org.refcodes.controlflow.ExecutionStrategy aExecutionStrategy) Constructs aObservableConnectionReceiver
with the given attributes.ObservableConnectionReceiver
(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, org.refcodes.observer.EventMetaData aEventMetaData) Constructs aObservableConnectionReceiver
with the given attributes.ObservableConnectionReceiver
(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, org.refcodes.observer.EventMetaData aEventMetaData, CON aSource) Constructs aObservableConnectionReceiver
with the given attributes.ObservableConnectionReceiver
(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, org.refcodes.observer.EventMetaData aEventMetaData, CON aSource, ExecutorService aExecutorService, org.refcodes.controlflow.ExecutionStrategy aExecutionStrategy) Constructs aObservableConnectionReceiver
with the given attributes.ObservableConnectionReceiver
(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, org.refcodes.observer.EventMetaData aEventMetaData, ExecutorService aExecutorService, org.refcodes.controlflow.ExecutionStrategy aExecutionStrategy) Constructs aObservableConnectionReceiver
with the given attributes. -
Method Summary
Modifier and TypeMethodDescriptionint
void
close()
void
destroy()
org.refcodes.component.ConnectionStatus
boolean
hasObserver
(org.refcodes.component.ext.observer.ConnectionObserver<CON> aObserver) boolean
boolean
isClosed()
boolean
isOpenable
(CON aConnection) boolean
isOpened()
void
receive()
boolean
subscribeObserver
(org.refcodes.component.ext.observer.ConnectionObserver<CON> aObserver) boolean
unsubscribeObserver
(org.refcodes.component.ext.observer.ConnectionObserver<CON> aObserver) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.refcodes.io.Availability
hasAvailable
Methods inherited from interface org.refcodes.component.Closable
closeIn, closeQuietly, closeUnchecked
Methods inherited from interface org.refcodes.component.ConnectionOpenable
openUnchecked
Methods inherited from interface org.refcodes.io.DatagramsDestination
receive
Methods inherited from interface org.refcodes.io.DatagramsReceiver
receive, receiveAll
-
Constructor Details
-
ObservableConnectionReceiver
public ObservableConnectionReceiver(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver) Constructs aObservableConnectionReceiver
with the given attributes.- Parameters:
aConnectionReceiver
- TheConnectionDatagramsReceiver
to which the connection method calls are to be delegated to.
-
ObservableConnectionReceiver
public ObservableConnectionReceiver(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, CON aSource) Constructs aObservableConnectionReceiver
with the given attributes.- Parameters:
aConnectionReceiver
- TheConnectionDatagramsReceiver
to which the connection method calls are to be delegated to.aSource
- The source instance to be used when firing events in case the source is to be different from this class' instance.
-
ObservableConnectionReceiver
public ObservableConnectionReceiver(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, CON aSource, ExecutorService aExecutorService, org.refcodes.controlflow.ExecutionStrategy aExecutionStrategy) Constructs aObservableConnectionReceiver
with the given attributes.- Parameters:
aConnectionReceiver
- TheConnectionDatagramsReceiver
to which the connection method calls are to be delegated to.aSource
- The source instance to be used when firing events in case the source is to be different from this class' instance.aExecutorService
- The executor service to be used when firingActionEvent
instances in multiple threads (if null then a default one is used).aExecutionStrategy
- TheExecutionStrategy
to be used when firingActionEvent
instance (if null then the defaultExecutionStrategy.SEQUENTIAL
is used).
-
ObservableConnectionReceiver
public ObservableConnectionReceiver(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, org.refcodes.observer.EventMetaData aEventMetaData) Constructs aObservableConnectionReceiver
with the given attributes.- Parameters:
aConnectionReceiver
- TheConnectionDatagramsReceiver
to which the connection method calls are to be delegated to.aEventMetaData
- TheEventMetaData
to be used when firing events in case theEventMetaData
is to be different from the auto-generatedEventMetaData
.
-
ObservableConnectionReceiver
public ObservableConnectionReceiver(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, org.refcodes.observer.EventMetaData aEventMetaData, CON aSource) Constructs aObservableConnectionReceiver
with the given attributes.- Parameters:
aConnectionReceiver
- TheConnectionDatagramsReceiver
to which the connection method calls are to be delegated to.aEventMetaData
- TheEventMetaData
to be used when firing events in case theEventMetaData
is to be different from the auto-generatedEventMetaData
.aSource
- The source instance to be used when firing events in case the source is to be different from this class' instance.
-
ObservableConnectionReceiver
public ObservableConnectionReceiver(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, org.refcodes.observer.EventMetaData aEventMetaData, CON aSource, ExecutorService aExecutorService, org.refcodes.controlflow.ExecutionStrategy aExecutionStrategy) Constructs aObservableConnectionReceiver
with the given attributes.- Parameters:
aConnectionReceiver
- TheConnectionDatagramsReceiver
to which the connection method calls are to be delegated to.aEventMetaData
- TheEventMetaData
to be used when firing events in case theEventMetaData
is to be different from the auto-generatedEventMetaData
.aSource
- The source instance to be used when firing events in case the source is to be different from this class' instance.aExecutorService
- The executor service to be used when firingActionEvent
instances in multiple threads (if null then a default one is used).aExecutionStrategy
- TheExecutionStrategy
to be used when firingActionEvent
instance (if null then the defaultExecutionStrategy.SEQUENTIAL
is used).
-
ObservableConnectionReceiver
public ObservableConnectionReceiver(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, org.refcodes.observer.EventMetaData aEventMetaData, ExecutorService aExecutorService, org.refcodes.controlflow.ExecutionStrategy aExecutionStrategy) Constructs aObservableConnectionReceiver
with the given attributes.- Parameters:
aConnectionReceiver
- TheConnectionDatagramsReceiver
to which the connection method calls are to be delegated to.aEventMetaData
- TheEventMetaData
to be used when firing events in case theEventMetaData
is to be different from the auto-generatedEventMetaData
.aExecutorService
- The executor service to be used when firingActionEvent
instances in multiple threads (if null then a default one is used).aExecutionStrategy
- TheExecutionStrategy
to be used when firingActionEvent
instance (if null then the defaultExecutionStrategy.SEQUENTIAL
is used).
-
ObservableConnectionReceiver
public ObservableConnectionReceiver(org.refcodes.io.ConnectionDatagramsReceiver<DATA, CON> aConnectionReceiver, ExecutorService aExecutorService, org.refcodes.controlflow.ExecutionStrategy aExecutionStrategy) Constructs aObservableConnectionReceiver
with the given attributes.- Parameters:
aConnectionReceiver
- TheConnectionDatagramsReceiver
to which the connection method calls are to be delegated to.aExecutorService
- The executor service to be used when firingActionEvent
instances in multiple threads (if null then a default one is used).aExecutionStrategy
- TheExecutionStrategy
to be used when firingActionEvent
instance (if null then the defaultExecutionStrategy.SEQUENTIAL
is used).
-
-
Method Details
-
available
- Specified by:
available
in interfaceorg.refcodes.io.Availability
- Throws:
IOException
-
close
- Specified by:
close
in interfaceorg.refcodes.component.Closable
- Throws:
IOException
-
destroy
public void destroy()- Specified by:
destroy
in interfaceorg.refcodes.component.Destroyable
-
getConnectionStatus
public org.refcodes.component.ConnectionStatus getConnectionStatus()- Specified by:
getConnectionStatus
in interfaceorg.refcodes.component.ConnectionStatusAccessor
-
hasObserver
- Specified by:
hasObserver
in interfaceorg.refcodes.observer.Observable<DATA extends Serializable>
-
isClosable
public boolean isClosable()- Specified by:
isClosable
in interfaceorg.refcodes.component.Closable.CloseAutomaton
-
isClosed
public boolean isClosed()- Specified by:
isClosed
in interfaceorg.refcodes.component.ClosedAccessor
-
isOpenable
- Specified by:
isOpenable
in interfaceorg.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<DATA extends Serializable>
-
isOpened
public boolean isOpened()- Specified by:
isOpened
in interfaceorg.refcodes.component.ConnectionStatusAccessor
- Specified by:
isOpened
in interfaceorg.refcodes.component.OpenedAccessor
-
open
- Specified by:
open
in interfaceorg.refcodes.component.ConnectionOpenable<DATA extends Serializable>
- Throws:
IOException
-
receive
- Specified by:
receive
in interfaceorg.refcodes.io.DatagramDestination<DATA extends Serializable>
- Specified by:
receive
in interfaceorg.refcodes.io.DatagramsDestination<DATA extends Serializable>
- Throws:
IOException
-
subscribeObserver
public boolean subscribeObserver(org.refcodes.component.ext.observer.ConnectionObserver<CON> aObserver) - Specified by:
subscribeObserver
in interfaceorg.refcodes.observer.Observable<DATA extends Serializable>
-
unsubscribeObserver
public boolean unsubscribeObserver(org.refcodes.component.ext.observer.ConnectionObserver<CON> aObserver) - Specified by:
unsubscribeObserver
in interfaceorg.refcodes.observer.Observable<DATA extends Serializable>
-