BloombergConnectionConfig: {
    actions?: BloombergActionsConfig;
    group?: BloombergGroup;
    onContextChanged?: ((context) => void);
    onError?: ((error) => void);
}

Configuration for a Bloomberg Connection.

Type declaration

  • Optional actions?: BloombergActionsConfig

    Context types and intents that will be handled along with their corresponding actions.

  • Optional group?: BloombergGroup

    Bloomberg Launchpad group that will set context whenever the group’s security changes.

  • Optional onContextChanged?: ((context) => void)
      • (context): void
      • Callback that will be triggered whenever context changes.

        Parameters

        • context: unknown

          The new context.

        Returns void

  • Optional onError?: ((error) => void)
      • (error): void
      • Callback that will be triggered whenever an error occurs after the connection has been created.

        Parameters

        • error: ApiError

          Error that was detected.

        Returns void

Generated using TypeDoc