Rename GrpcService to GrpcClient (#526)
This commit is contained in:
Родитель
53eb545326
Коммит
fb24914558
|
@ -4,7 +4,7 @@
|
|||
import * as parseArgs from 'minimist';
|
||||
import { AzureFunctionsRpcMessages as rpc } from '../azure-functions-language-worker-protobuf/src/rpc';
|
||||
import { FunctionLoader } from './FunctionLoader';
|
||||
import { CreateGrpcEventStream } from './GrpcService';
|
||||
import { CreateGrpcEventStream } from './GrpcClient';
|
||||
import { InternalException } from './utils/InternalException';
|
||||
import { systemError, systemLog } from './utils/Logger';
|
||||
import { WorkerChannel } from './WorkerChannel';
|
||||
|
|
|
@ -9,7 +9,7 @@ import { AzureFunctionsRpcMessages as rpc } from '../azure-functions-language-wo
|
|||
import { CreateContextAndInputs, LogCallback, ResultCallback } from './Context';
|
||||
import { toTypedData } from './converters';
|
||||
import { IFunctionLoader } from './FunctionLoader';
|
||||
import { IEventStream } from './GrpcService';
|
||||
import { IEventStream } from './GrpcClient';
|
||||
import { InternalException } from './utils/InternalException';
|
||||
import { systemError } from './utils/Logger';
|
||||
import LogCategory = rpc.RpcLog.RpcLogCategory;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
import { EventEmitter } from 'events';
|
||||
import * as sinon from 'sinon';
|
||||
import { AzureFunctionsRpcMessages as rpc } from '../azure-functions-language-worker-protobuf/src/rpc';
|
||||
import { IEventStream } from '../src/GrpcService';
|
||||
import { IEventStream } from '../src/GrpcClient';
|
||||
|
||||
export class TestEventStream extends EventEmitter implements IEventStream {
|
||||
written: sinon.SinonSpy;
|
||||
|
|
Загрузка…
Ссылка в новой задаче