|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.runtime.Entity.Empty
jist.runtime.Channel
public class Channel
Implements a single-slot channel ala Communicating Sequential Processes (CSP) by Hoare. Other synchronization primitives can be built atop this structure, or directly using the same idea. This Channel implementation may not block the sender, and may drop excessive sends by setting flags accordingly.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface jist.runtime.Entity |
---|
Entity.Empty, Entity.Static |
Field Summary | |
---|---|
static java.lang.reflect.Method |
_jistMethodStub_receive_28_29Ljava_2elang_2eObject_3b
Jist method stub for receive method. |
static java.lang.reflect.Method |
_jistMethodStub_send_28Ljava_2elang_2eObject_3b_29V
Jist method stub for send(Object) method. |
static java.lang.reflect.Method |
_jistMethodStub_send_28Ljava_2elang_2eObject_3bZZ_29V
Jist method stub for send(Object) method. |
static java.lang.reflect.Method |
_jistMethodStub_sendNonBlock_28Ljava_2elang_2eObject_3b_29V
Jist method stub for sendNonBlock(Object). |
static java.lang.reflect.Method |
_jistMethodStub_sendNonBlock_28Ljava_2elang_2eObject_3bZZ_29V
Jist method stub for sendNonBlock(Object, boolean). |
private Event |
blockedReceiver
Continuation event of blocked receiver. |
private Event |
blockedSender
Continuation event of blocked sender. |
private java.lang.Object |
data
Single data object passed through channel. |
private boolean |
hasData
Whether channel is holding data. |
Fields inherited from class jist.runtime.Entity.Empty |
---|
_jistField__ref |
Constructor Summary | |
---|---|
Channel()
Create new Channel. |
Method Summary | |
---|---|
private java.lang.Object |
clearData()
Clear data from the channel. |
java.lang.Object |
receive()
Blocking receive call. |
void |
send(java.lang.Object data)
Blocking non-dropping send call. |
void |
send(java.lang.Object data,
boolean shouldDropIfFull,
boolean shouldDropIfNoReceiveWaiting)
Blocking send call. |
private void |
send(java.lang.Object data,
boolean shouldDropIfFull,
boolean shouldDropIfNotReceiveWaiting,
boolean shouldBlockSender)
Blocking send call implementation. |
void |
sendNonBlock(java.lang.Object data)
Non-blocking non-dropping send call. |
void |
sendNonBlock(java.lang.Object data,
boolean shouldDropIfFull,
boolean shouldDropIfNoReceiveWaiting)
Non-blocking send call. |
private void |
setData(java.lang.Object data)
Put data in the channel. |
Methods inherited from class jist.runtime.Entity.Empty |
---|
_jistMethod_Get__ref, _jistMethod_Set__ref |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static java.lang.reflect.Method _jistMethodStub_receive_28_29Ljava_2elang_2eObject_3b
public static java.lang.reflect.Method _jistMethodStub_send_28Ljava_2elang_2eObject_3b_29V
public static java.lang.reflect.Method _jistMethodStub_send_28Ljava_2elang_2eObject_3bZZ_29V
public static java.lang.reflect.Method _jistMethodStub_sendNonBlock_28Ljava_2elang_2eObject_3b_29V
public static java.lang.reflect.Method _jistMethodStub_sendNonBlock_28Ljava_2elang_2eObject_3bZZ_29V
private Event blockedSender
private Event blockedReceiver
private java.lang.Object data
private boolean hasData
Constructor Detail |
---|
Channel()
JistAPI
Method Detail |
---|
private void send(java.lang.Object data, boolean shouldDropIfFull, boolean shouldDropIfNotReceiveWaiting, boolean shouldBlockSender)
data
- object to transmitshouldDropIfFull
- whether over-sent channel should throw exception or silently dropshouldDropIfNotReceiveWaiting
- whether send should be dropped if no receive is waitingshouldBlockSender
- whether sender should be blockedpublic void send(java.lang.Object data, boolean shouldDropIfFull, boolean shouldDropIfNoReceiveWaiting) throws JistAPI.Continuation
data
- object to transmitshouldDropIfFull
- whether over-sent channel should throw exception or silently dropshouldDropIfNoReceiveWaiting
- whether send should be dropped if no receive is waiting
JistAPI.Continuation
- never (merely a rewriter tag)public void send(java.lang.Object data) throws JistAPI.Continuation
data
- object to transmit
JistAPI.Continuation
- never (merely a rewriter tag)public void sendNonBlock(java.lang.Object data, boolean shouldDropIfFull, boolean shouldDropIfNoReceiveWaiting)
data
- object to transmitshouldDropIfFull
- whether over-sent channel should throw exception or silently dropshouldDropIfNoReceiveWaiting
- whether send should be dropped if no receive is waitingpublic void sendNonBlock(java.lang.Object data)
data
- object to transmitpublic java.lang.Object receive() throws JistAPI.Continuation
JistAPI.Continuation
- never (merely a rewriter tag)private void setData(java.lang.Object data)
data
- data to insert into the channelprivate java.lang.Object clearData()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |