public PipelineContext<TSubject,TContext>
Represents running execution of a pipeline
| Modifier and Type | Method and Description |
|---|---|
void |
finish()
Finishes current pipeline execution
|
TContext |
getContext()
Object representing context in which pipeline executes
|
TSubject |
getSubject()
Subject of this pipeline execution that goes along the pipeline
|
java.lang.Object |
proceed(kotlin.coroutines.experimental.Continuation<? super TSubject> p)
Continues execution of the pipeline with the same subject
|
java.lang.Object |
proceedWith(TSubject subject,
kotlin.coroutines.experimental.Continuation<? super TSubject> p)
Continues execution of the pipeline with the given subject
|
TContext getContext()
Object representing context in which pipeline executes
TSubject getSubject()
Subject of this pipeline execution that goes along the pipeline
void finish()
Finishes current pipeline execution
java.lang.Object proceedWith(TSubject subject,
kotlin.coroutines.experimental.Continuation<? super TSubject> p)
Continues execution of the pipeline with the given subject
java.lang.Object proceed(kotlin.coroutines.experimental.Continuation<? super TSubject> p)
Continues execution of the pipeline with the same subject