Uses of Interface
de.aristaflow.adept2.base.communication.CommunicationStack
-
Packages that use CommunicationStack Package Description de.aristaflow.adept2.base.communication -
-
Uses of CommunicationStack in de.aristaflow.adept2.base.communication
Classes in de.aristaflow.adept2.base.communication that implement CommunicationStack Modifier and Type Class Description class
CommunicationStackLayer<I,O,T,V>
A class extending this class implements a layer within a communication stack handling requests and responses and it represents the communication stack consisting of this layer and all following layers.class
CommunicationStackTerminator<I,O>
Provides the base implementation for the last layer, i. e. the terminator, within aCommunicationStack
.Methods in de.aristaflow.adept2.base.communication that return CommunicationStack Modifier and Type Method Description CommunicationStack<I1,O1>
CommunicationService. getSkeletonCommunicationStack()
Returns the communication stack to be used by skeletons to handle client requests.CommunicationStack<I2,O2>
CommunicationService. getStubCommunicationStack()
Returns the communication stack to be used by stubs to send requests to remote services.Methods in de.aristaflow.adept2.base.communication with parameters of type CommunicationStack Modifier and Type Method Description O2
CommStackInterceptor. process(URI remoteIdentifier, I1 input, CommunicationStack<I2,O1> commStack)
Intercepts the communication processing and forwards it to the designated communication stack.Constructors in de.aristaflow.adept2.base.communication with parameters of type CommunicationStack Constructor Description CommunicationStackLayer(CommunicationStack<T,V> delegate, LogService logService)
Sets up this communication stack layer and sets the successor within the communication stack this communication stack layer is assigned to.
-