-
- 所有已知实现类:
DefaultDataPipeline
public interface DataPipeline
-
-
方法概要
修饰符和类型 方法 说明 DataPipelineaddAfter(@NotNull String namespace, @NotNull String target, @NotNull DataHandler... handlers)DataPipelineaddBefore(@NotNull String namespace, @NotNull String target, @NotNull DataHandler... handlers)DataPipelineaddFirst(@NotNull String namespace, @NotNull DataHandler... handlers)DataPipelineaddLast(@NotNull String namespace, @NotNull DataHandler... handlers)DataProcessContextcreateContext()DataPipelineremove(@NotNull DataHandler handler)<T extends DataHandler>
DataPipelineremove(@NotNull Class<T> type)DataPipelineremove(@NotNull String namespace)DataPipelinereplace(@NotNull String namespace, @NotNull String target, @NotNull DataHandler... handlers)
-
-
-
方法详细资料
-
addFirst
DataPipeline addFirst(@NotNull @NotNull String namespace, @NotNull @NotNull DataHandler... handlers)
-
addLast
DataPipeline addLast(@NotNull @NotNull String namespace, @NotNull @NotNull DataHandler... handlers)
-
addBefore
DataPipeline addBefore(@NotNull @NotNull String namespace, @NotNull @NotNull String target, @NotNull @NotNull DataHandler... handlers)
-
addAfter
DataPipeline addAfter(@NotNull @NotNull String namespace, @NotNull @NotNull String target, @NotNull @NotNull DataHandler... handlers)
-
remove
DataPipeline remove(@NotNull @NotNull String namespace)
-
remove
DataPipeline remove(@NotNull @NotNull DataHandler handler)
-
remove
<T extends DataHandler> DataPipeline remove(@NotNull @NotNull Class<T> type)
-
replace
DataPipeline replace(@NotNull @NotNull String namespace, @NotNull @NotNull String target, @NotNull @NotNull DataHandler... handlers)
-
createContext
DataProcessContext createContext()
-
-