UNPKG

@dolittle/sdk.services

Version:

Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.

18 lines (16 loc) 1.15 kB
// Copyright (c) Dolittle. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. export { ClientProcessor } from './ClientProcessor'; export { CouldNotConnectToRuntime } from './CouldNotConnectToRuntime'; export { DidNotReceiveConnectResponse } from './DidNotReceiveConnectResponse'; export { GrpcError, isGrpcError } from './GrpcError'; export { ClientStreamMethod, DuplexMethod, ServerStreamMethod, UnaryMethod } from './GrpcMethods'; export { IReverseCallClient, ReverseCallCallback } from './IReverseCallClient'; export { ITrackProcessors } from './ITrackProcessors'; export { PingTimeout } from './PingTimeout'; export { ProcessorShouldNeverComplete } from './ProcessorShouldNeverComplete'; export { ProcessorTracker } from './ProcessorTracker'; export { reactiveClientStream, reactiveDuplex, reactiveServerStream, reactiveUnary } from './ReactiveGrpc'; export { RegistrationFailed } from './RegistrationFailed'; export { ReverseCallClient } from './ReverseCallClient'; export { WaitingForProcessorsCompletionCancelled } from './WaitingForProcessorsCompletionCancelled';