cannectors

Inputs

Modules that produce records — HTTP polling, SOAP polling, webhooks, databases.

Every pipeline has exactly one input. It produces records the filter chain consumes, either on a CRON schedule (HTTP polling, SOAP polling, database) or as a long-running listener (webhook).

What an input does

  1. Fetches a batch of records — one HTTP response page, one SQL query result, one webhook delivery.
  2. Hands the batch off to the filter chain, one record at a time.
  3. On scheduled inputs, persists state (cursor, last ID, timestamp) between runs so the next batch picks up where the previous one left off.

See Input → Filters → Output for the full record-flow model.

On this page