-
- 所有已知实现类:
DefaultDataPipeline
public interface DataPipeline
-
-
方法概要
修饰符和类型 方法 说明 DataPipeline
addAfter(@NotNull String namespace, @NotNull String target, @NotNull DataHandler... handlers)
DataPipeline
addBefore(@NotNull String namespace, @NotNull String target, @NotNull DataHandler... handlers)
DataPipeline
addFirst(@NotNull String namespace, @NotNull DataHandler... handlers)
DataPipeline
addLast(@NotNull String namespace, @NotNull DataHandler... handlers)
DataProcessContext
createContext()
DataPipeline
remove(@NotNull DataHandler handler)
<T extends DataHandler>
DataPipelineremove(@NotNull Class<T> type)
DataPipeline
remove(@NotNull String namespace)
DataPipeline
replace(@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()
-
-