The Synapse Class provides the programmer with access to Buffers, Axons, Dendrites and Neurons associated with Processing Cores and their Cross-Bars.
TSynapse(Ident);
Example:
class xVerify extends TSynapse
{
public xVerify(String synapseId)
{
super(synapseId);
}
public void execute()
{
trace("xVerify:" + ident + " Buffer:" + (String) axon.buffer);
dendrite.storage = axon.buffer;
neuron.buffer = axon.buffer;
}
}