dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_EventChannelModule cluster_EventChannelModule_imports cluster_EventChannelModule_exports RestPythonModule RestPythonModule EventChannelModule EventChannelModule RestPythonModule->EventChannelModule IdmEventModule IdmEventModule IdmEventModule->EventChannelModule OdmEventModule OdmEventModule OdmEventModule->EventChannelModule IdmEventModule IdmEventModule EventChannelModule->IdmEventModule OdmEventModule OdmEventModule EventChannelModule->OdmEventModule

File

src/sockets/events/event-channel.module.ts

Description

The Event Channel Module represents all traffic that can occur on a REDHAWK Event Channel including ODM, IDM, and Messages.

import { NgModule } from '@angular/core';
import { RestPythonModule } from '../../rest-python/rest-python.module';

// Submodules
import { IdmEventModule } from './idm/idm-event.module';
import { OdmEventModule } from './odm/odm-event.module';

// Exports
export * from './idm/idm-event.module';
export * from './odm/odm-event.module';
export * from './generic/index';

/**
 * The Event Channel Module represents all traffic that can occur on a REDHAWK
 * Event Channel including ODM, IDM, and Messages.
 */
@NgModule({
    imports: [
        RestPythonModule,
        IdmEventModule,
        OdmEventModule
    ],
    exports: [
        IdmEventModule,
        OdmEventModule
    ]
})
export class EventChannelModule {}

results matching ""

    No results matching ""