EchoBackend interface

Describes echo backends that can be registered to receive of events.

Signature

  1. export interface EchoBackend<T extends EchoEvent = any, O = any>

Import

  1. import { EchoBackend } from '@grafana/runtime';

Properties

PropertyTypeDescription
addEvent(event: T) => void
flush() => void
optionsO
supportedEventsEchoEventType[]

addEvent property

Signature

  1. addEvent: (event: T) => void;

flush property

Signature

  1. flush: () => void;

options property

Signature

  1. options: O;

supportedEvents property

Signature

  1. supportedEvents: EchoEventType[];