jfun.util.yield
Interface Continuation

All Known Implementing Classes:
AbstractContinuation

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

Author:
Ben Yu

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

yield

void yield(java.lang.Object obj)
Receives an object.

Parameters:
obj - the object.

yield

void yield(char v)
Receives data of type char.

Parameters:
v - the data.

yield

void yield(boolean v)
Receives data of type boolean.

Parameters:
v - the data.

yield

void yield(byte v)
Receives data of type byte.

Parameters:
v - the data.

yield

void yield(short v)
Receives data of type short.

Parameters:
v - the data.

yield

void yield(int v)
Receives data of type int.

Parameters:
v - the data.

yield

void yield(long v)
Receives data of type long.

Parameters:
v - the data.

yield

void yield(float v)
Receives data of type float.

Parameters:
v - the data.

yield

void yield(double v)
Receives data of type double.

Parameters:
v - the data.