|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Continuation
A Continuation represents a program unit that takes control
when a piece of data is received.
Typically this will involve transfer of control between asynchronous threads.
However, simple implementation may be a simple call back that handles
the data synchronously.
Zephyr Business Solution
Method Summary | |
---|---|
void |
yield(boolean v)
Receives data of type boolean. |
void |
yield(byte v)
Receives data of type byte. |
void |
yield(char v)
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(java.lang.Object obj)
Receives an object. |
void |
yield(short v)
Receives data of type short. |
Method Detail |
---|
void yield(java.lang.Object obj)
obj
- the object.void yield(char v)
v
- the data.void yield(boolean v)
v
- the data.void yield(byte v)
v
- the data.void yield(short v)
v
- the data.void yield(int v)
v
- the data.void yield(long v)
v
- the data.void yield(float v)
v
- the data.void yield(double v)
v
- the data.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |