Package | Description |
---|---|
ptolemy.actor |
Executable entities.
|
ptolemy.actor.lib.hoc |
Higher Order Component Classes.
|
ptolemy.actor.test |
The ptolemy.actor.test package.
|
ptolemy.domains.de.kernel |
The ptolemy.domains.de.kernel package.
|
ptolemy.domains.modal.kernel |
The ptolemy.domains.modal.kernel package.
|
ptolemy.domains.pn.kernel |
The Kahn-MacQueen process network domain.
|
Modifier and Type | Method and Description |
---|---|
void |
TypedIOPort.broadcast(Token token)
Send a token to all connected receivers.
|
void |
ConstantPublisherPort.broadcast(Token token)
Override the base class to replace the specified token with
the value of constantValue.
|
void |
IOPort.broadcast(Token token)
Send a token to all connected receivers.
|
void |
TypedIOPort.broadcast(Token[] tokenArray,
int vectorLength)
Send the specified portion of a token array to all receivers connected
to this port.
|
void |
ConstantPublisherPort.broadcast(Token[] tokenArray,
int vectorLength)
Override the base class to replace the specified tokens with
the value of constantValue.
|
void |
IOPort.broadcast(Token[] tokenArray,
int vectorLength)
Send the specified portion of a token array to all receivers connected
to this port.
|
void |
Mailbox.put(Token token)
Put a token into the mailbox.
|
void |
Receiver.put(Token token)
Put the specified token into this receiver.
|
void |
IntermediateReceiver.put(Token token)
Forward the specified token to communication aspect specified in
the constructor.
|
abstract void |
AbstractReceiver.put(Token token)
Put the specified token into this receiver.
|
void |
Receiver.putArray(Token[] tokenArray,
int numberOfTokens)
Put a portion of the specified token array into this receiver.
|
void |
AbstractReceiver.putArray(Token[] tokenArray,
int numberOfTokens)
Put a portion of the specified token array into this receiver.
|
void |
Receiver.putArrayToAll(Token[] tokens,
int numberOfTokens,
Receiver[] receivers)
Put a sequence of tokens to all receivers in the specified array.
|
void |
AbstractReceiver.putArrayToAll(Token[] tokens,
int numberOfTokens,
Receiver[] receivers)
Put a sequence of tokens to all receivers in the specified array.
|
void |
Receiver.putToAll(Token token,
Receiver[] receivers)
Put a single token to all receivers in the specified array.
|
void |
AbstractReceiver.putToAll(Token token,
Receiver[] receivers)
Put to all receivers in the specified array.
|
void |
TypedIOPort.send(int channelIndex,
Token token)
Send a token to the specified channel, checking the type
and converting the token if necessary.
|
void |
ConstantPublisherPort.send(int channelIndex,
Token token)
Override the base class to replace the specified token with
the value of constantValue.
|
void |
IOPort.send(int channelIndex,
Token token)
Send the specified token to all receivers connected to the
specified channel.
|
void |
TypedIOPort.send(int channelIndex,
Token[] tokenArray,
int vectorLength)
Send the specified portion of a token array to all receivers
connected to the specified channel, checking the type
and converting the token if necessary.
|
void |
ConstantPublisherPort.send(int channelIndex,
Token[] tokenArray,
int vectorLength)
Override the base class to replace the specified tokens with
the value of constantValue.
|
void |
IOPort.send(int channelIndex,
Token[] tokenArray,
int vectorLength)
Send the specified portion of a token array to all receivers connected
to the specified channel.
|
void |
TypedIOPort.sendInside(int channelIndex,
Token token)
Send the specified token to all receivers connected to the
specified inside channel of this port, checking the type and
converting the token if necessary.
|
void |
IOPort.sendInside(int channelIndex,
Token token)
Send the specified token to all receivers connected to the
specified inside channel of this port.
|
Modifier and Type | Method and Description |
---|---|
void |
IterateOverArray.IteratePort.sendInside(int channelIndex,
Token token)
Override the base class to convert the token to the element
type rather than to the type of the port.
|
Modifier and Type | Method and Description |
---|---|
void |
TestAbstractReceiver.put(Token token)
Put the specified token into this receiver.
|
Modifier and Type | Method and Description |
---|---|
void |
DEReceiver.put(Token token)
Put a token into this receiver and post a trigger event to the director.
|
Modifier and Type | Method and Description |
---|---|
void |
FSMReceiver.put(Token token)
Put a token into this receiver.
|
void |
FSMReceiver.putArray(Token[] tokenArray,
int numberOfTokens)
If the argument has one token, then put that token in
the receiver.
|
Modifier and Type | Method and Description |
---|---|
void |
PNQueueReceiver.put(Token token)
Put a token on the queue contained in this receiver.
|