dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_SocketsModule cluster_SocketsModule_imports cluster_SocketsModule_exports RestPythonModule RestPythonModule SocketsModule SocketsModule RestPythonModule->SocketsModule EventChannelModule EventChannelModule EventChannelModule->SocketsModule EventChannelModule EventChannelModule SocketsModule->EventChannelModule

File

src/sockets/sockets.module.ts

Description

The SocketsModule provides access to other modules involving websockets including the event services and BULKIO data transfers.

import { NgModule } from '@angular/core';

// Service interface to REST-Python
import { RestPythonModule } from '../rest-python/rest-python.module';

import { EventChannelModule } from './events/event-channel.module';
export * from './events/event-channel.module';

export * from './bulkio/index';
export * from './redhawk-listener.service';

/**
 * The SocketsModule provides access to other modules involving websockets 
 * including the event services and BULKIO data transfers.
 */
@NgModule({
    imports: [
        RestPythonModule,
        EventChannelModule
    ],
    exports: [
        EventChannelModule,
    ]
})
export class SocketsModule {}

results matching ""

    No results matching ""