public abstract class AbstractContinuation extends java.lang.Object implements Continuation
Zephyr Business Solution
Constructor and Description |
---|
AbstractContinuation() |
Modifier and Type | Method and Description |
---|---|
void |
yield(boolean v)
Receives data of type boolean.
|
void |
yield(byte v)
Receives data of type byte.
|
void |
yield(char c)
Receives data of type char.
|
void |
yield(double v)
Receives data of type double.
|
void |
yield(float v)
Receives data of type float.
|
void |
yield(int v)
Receives data of type int.
|
void |
yield(long v)
Receives data of type long.
|
void |
yield(short v)
Receives data of type short.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
yield
public final void yield(char c)
Continuation
yield
in interface Continuation
c
- the data.public final void yield(boolean v)
Continuation
yield
in interface Continuation
v
- the data.public final void yield(byte v)
Continuation
yield
in interface Continuation
v
- the data.public final void yield(short v)
Continuation
yield
in interface Continuation
v
- the data.public final void yield(int v)
Continuation
yield
in interface Continuation
v
- the data.public final void yield(long v)
Continuation
yield
in interface Continuation
v
- the data.public final void yield(float v)
Continuation
yield
in interface Continuation
v
- the data.public final void yield(double v)
Continuation
yield
in interface Continuation
v
- the data.