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>({
  1. Receptor<C, I, O> receptor,
  2. Cell? bind,
  3. Synapses<Signal, Cell> synapses,
})

Creates an open cell with configurable reception and linking.

Parameters:

  • receptor: Signal transformation logic
  • bind: Optional parent cell to connect with
  • synapses: Link management configuration

Implementation

factory OpenCell({
  Receptor<C,I,O> receptor,
  Cell? bind,
  Synapses synapses,
}) = OpenCellSync<C,L,I,O>;