Uses of Interface
org.apache.qpid.protonj2.engine.EngineHandler
-
Packages that use EngineHandler Package Description org.apache.qpid.protonj2.engine org.apache.qpid.protonj2.engine.impl org.apache.qpid.protonj2.engine.impl.sasl -
-
Uses of EngineHandler in org.apache.qpid.protonj2.engine
Methods in org.apache.qpid.protonj2.engine that return EngineHandler Modifier and Type Method Description EngineHandler
EnginePipeline. find(java.lang.String name)
Finds and returns first handler that is found in the pipeline that matches the given name.EngineHandler
EnginePipeline. first()
EngineHandler
EngineHandlerContext. handler()
EngineHandler
EnginePipeline. last()
Methods in org.apache.qpid.protonj2.engine with parameters of type EngineHandler Modifier and Type Method Description EnginePipeline
EnginePipeline. addFirst(java.lang.String name, EngineHandler handler)
Adds the given handler to the front of the pipeline with the given name stored for later lookup or remove operations.EnginePipeline
EnginePipeline. addLast(java.lang.String name, EngineHandler handler)
Adds the given handler to the end of the pipeline with the given name stored for later lookup or remove operations.EnginePipeline
EnginePipeline. remove(EngineHandler handler)
Removes the givenEngineHandler
from the pipeline if present. -
Uses of EngineHandler in org.apache.qpid.protonj2.engine.impl
Classes in org.apache.qpid.protonj2.engine.impl that implement EngineHandler Modifier and Type Class Description class
ProtonFrameDecodingHandler
Handler used to parse incoming frame data input into the engineclass
ProtonFrameEncodingHandler
Handler that encodes performatives into properly formed frames for IOclass
ProtonFrameLoggingHandler
Handler that will log incoming and outgoing Framesclass
ProtonPerformativeHandler
Transport Handler that forwards the incoming Performatives to the associated Connection as well as any error encountered during the Transport processing.Methods in org.apache.qpid.protonj2.engine.impl that return EngineHandler Modifier and Type Method Description EngineHandler
ProtonEnginePipeline. find(java.lang.String name)
EngineHandler
ProtonEnginePipelineProxy. find(java.lang.String name)
EngineHandler
ProtonEnginePipeline. first()
EngineHandler
ProtonEnginePipelineProxy. first()
EngineHandler
ProtonEngineHandlerContext. handler()
EngineHandler
ProtonEnginePipeline. last()
EngineHandler
ProtonEnginePipelineProxy. last()
Methods in org.apache.qpid.protonj2.engine.impl with parameters of type EngineHandler Modifier and Type Method Description ProtonEnginePipeline
ProtonEnginePipeline. addFirst(java.lang.String name, EngineHandler handler)
ProtonEnginePipelineProxy
ProtonEnginePipelineProxy. addFirst(java.lang.String name, EngineHandler handler)
ProtonEnginePipeline
ProtonEnginePipeline. addLast(java.lang.String name, EngineHandler handler)
ProtonEnginePipelineProxy
ProtonEnginePipelineProxy. addLast(java.lang.String name, EngineHandler handler)
EnginePipeline
ProtonEnginePipeline. remove(EngineHandler handler)
EnginePipeline
ProtonEnginePipelineProxy. remove(EngineHandler handler)
Constructors in org.apache.qpid.protonj2.engine.impl with parameters of type EngineHandler Constructor Description ProtonEngineHandlerContext(java.lang.String name, Engine engine, EngineHandler handler)
Creates a newProtonEngineHandlerContext
with the given options. -
Uses of EngineHandler in org.apache.qpid.protonj2.engine.impl.sasl
Classes in org.apache.qpid.protonj2.engine.impl.sasl that implement EngineHandler Modifier and Type Class Description class
ProtonSaslHandler
Base class used for common portions of the SASL processing pipeline.
-