|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjfun.util.yield.AbstractContinuation
public abstract class AbstractContinuation
A default implementation of Continuation. It simply wraps the primitive data as a corresponding Object and forwards the call to the abstract yield(Object).
Zephyr Business Solution
Constructor Summary | |
---|---|
AbstractContinuation()
|
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface jfun.util.yield.Continuation |
---|
yield |
Constructor Detail |
---|
public AbstractContinuation()
Method Detail |
---|
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.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |