OpenCell<C extends Cell, L extends Cell, I extends Signal, O extends Signal> constructor
OpenCell<C extends Cell, L extends Cell, I extends Signal, O extends Signal> ({})
Creates an open cell with configurable reception and linking.
Parameters:
receptor
: Signal transformation logicbind
: Optional parent cell to connect withsynapses
: Link management configuration
Implementation
factory OpenCell({
Receptor<C,I,O> receptor,
Cell? bind,
Synapses synapses,
}) = OpenCellSync<C,L,I,O>;