receptor abstract method

dynamic receptor(
  1. I signal
)

Processes an incoming signal

Parameters:

  • signal: The incoming signal to process

Returns:

  • Sync The processed output signal or null if rejected
  • Async A Future that resolves to the processed output signal or null if rejected

Implementation

receptor(I signal);