Class PipeBuilder<T>
- java.lang.Object
-
- de.quantummaid.eventmaid.internal.pipe.PipeBuilder<T>
-
public final class PipeBuilder<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description PipeBuilder()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> PipeBuilder<T>aPipe()Pipe<T>build()PipeBuilder<T>ofType(PipeType pipeType)PipeBuilder<T>withAsynchronousConfiguration(AsynchronousConfiguration configuration)PipeBuilder<T>withErrorHandler(PipeErrorHandler<T> errorHandler)PipeBuilder<T>withEventListener(PipeEventListener<T> eventListener)PipeBuilder<T>withStatisticsCollector(PipeStatisticsCollector statisticsCollector)
-
-
-
Method Detail
-
aPipe
public static <T> PipeBuilder<T> aPipe()
-
ofType
public PipeBuilder<T> ofType(PipeType pipeType)
-
withAsynchronousConfiguration
public PipeBuilder<T> withAsynchronousConfiguration(AsynchronousConfiguration configuration)
-
withStatisticsCollector
public PipeBuilder<T> withStatisticsCollector(PipeStatisticsCollector statisticsCollector)
-
withEventListener
public PipeBuilder<T> withEventListener(PipeEventListener<T> eventListener)
-
withErrorHandler
public PipeBuilder<T> withErrorHandler(PipeErrorHandler<T> errorHandler)
-
-