Class Task.Builder
- java.lang.Object
-
- app.nzyme.plugin.distributed.tasksqueue.Task.Builder
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Task.BuilderallowProcessSelf(boolean allowProcessSelf)abstract Task.BuilderallowRetry(boolean allowRetry)abstract Taskbuild()abstract Task.Builderparameters(Map<String,Object> parameters)abstract Task.Buildertype(TaskType type)
-
-
-
Method Detail
-
type
public abstract Task.Builder type(TaskType type)
-
allowProcessSelf
public abstract Task.Builder allowProcessSelf(boolean allowProcessSelf)
-
parameters
public abstract Task.Builder parameters(Map<String,Object> parameters)
-
allowRetry
public abstract Task.Builder allowRetry(boolean allowRetry)
-
build
public abstract Task build()
-
-