Class FileSignalChannel

java.lang.Object
io.debezium.pipeline.signal.channels.FileSignalChannel
All Implemented Interfaces:
SignalChannelReader

public class FileSignalChannel extends Object implements SignalChannelReader
The class responsible for processing of signals delivered to Debezium via a file. The signal message must have the following structure, formatted as json line:
  • id STRING - the unique identifier of the signal sent, usually UUID, can be used for deduplication
  • type STRING - the unique logical name of the code executing the signal
  • data STRING - the data in JSON format that are passed to the signal code
Author:
Ismail Simsek