mosaic.sim.neuron
Interface NeuronInput
- All Known Implementing Classes:
- Synapse, TemporalCodedOutput.Input, SpikeView
- public interface NeuronInput
This Interface specifies the capability of an object to act like an
input of a neuron, i.e. the ability to receive spike events.
It will usually be directly connected to an object with the capability
of sending spike events, i.e. an object that implements the NeuronOutput
interface.
- See Also:
NeuronOutput
spikeEvent
public void spikeEvent(NeuronOutput sender)
- Receive a simple spike event. This function will be called by the
sender of the spike (an object that implements the NeuronOutput
interface) whenever it emits a spike event.