Axinom Mosaic Libraries
    Preparing search index...

    An interface that represents a registry object which is used to register a messaging broker on app startup. Example using an express app:

     import express from 'express';
    //...
    const app = express();
    interface MessagingRegistry {
        get: (name: string) => any;
        set: (setting: string, val: any) => this;
    }
    Index

    Properties

    Properties

    get: (name: string) => any
    set: (setting: string, val: any) => this