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, waityieldpublic final void yield(char c)
Continuationyield in interface Continuationc - the data.public final void yield(boolean v)
Continuationyield in interface Continuationv - the data.public final void yield(byte v)
Continuationyield in interface Continuationv - the data.public final void yield(short v)
Continuationyield in interface Continuationv - the data.public final void yield(int v)
Continuationyield in interface Continuationv - the data.public final void yield(long v)
Continuationyield in interface Continuationv - the data.public final void yield(float v)
Continuationyield in interface Continuationv - the data.public final void yield(double v)
Continuationyield in interface Continuationv - the data.