Type alias ProducerHandler

ProducerHandler: ((interest, producer) => Promise<Data | undefined>)

Type declaration

    • (interest, producer): Promise<Data | undefined>
    • Producer handler function.

      The handler can return a Data to respond to the Interest, or return undefined to cause a timeout.

      If Options.dataBuffer is provided, the handler can access the DataBuffer via producer.dataBuffer . The handler can return a Data to respond to the Interest, which is also inserted to the DataBuffer unless Options.autoBuffer is set to false. If the handler returns undefined, the Interest is used to query the DataBuffer, and any matching Data may be sent.

      Parameters

      Returns Promise<Data | undefined>

Generated using TypeDoc