Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

sentry / @nestjs/microservices   js

Repository URL to install this package:

Version: 7.0.10 

/ ctx-host / tcp.context.d.ts

import { JsonSocket } from '../helpers';
import { BaseRpcContext } from './base-rpc.context';
declare type TcpContextArgs = [JsonSocket, string];
export declare class TcpContext extends BaseRpcContext<TcpContextArgs> {
    constructor(args: TcpContextArgs);
    /**
     * Returns the underlying JSON socket.
     */
    getSocketRef(): JsonSocket;
    /**
     * Returns the name of the pattern.
     */
    getPattern(): string;
}
export {};