@grpc/grpc-js
Version:
gRPC Library for Node - pure JS implementation
68 lines (66 loc) • 2.1 kB
text/typescript
export { trace, log } from './logging';
export {
Resolver,
ResolverListener,
registerResolver,
ConfigSelector,
createResolver,
} from './resolver';
export { GrpcUri, uriToString, splitHostPort, HostPort } from './uri-parser';
export { Duration, durationToMs, parseDuration } from './duration';
export { BackoffTimeout } from './backoff-timeout';
export {
LoadBalancer,
TypedLoadBalancingConfig,
ChannelControlHelper,
createChildChannelControlHelper,
registerLoadBalancerType,
selectLbConfigFromList,
parseLoadBalancingConfig,
isLoadBalancerNameRegistered,
} from './load-balancer';
export { LeafLoadBalancer } from './load-balancer-pick-first';
export {
SubchannelAddress,
subchannelAddressToString,
Endpoint,
endpointToString,
endpointHasAddress,
EndpointMap,
} from './subchannel-address';
export { ChildLoadBalancerHandler } from './load-balancer-child-handler';
export {
Picker,
UnavailablePicker,
QueuePicker,
PickResult,
PickArgs,
PickResultType,
} from './picker';
export { Call as CallStream } from './call-interface';
export { Filter, BaseFilter, FilterFactory } from './filter';
export { FilterStackFactory } from './filter-stack';
export { registerAdminService } from './admin';
export {
SubchannelInterface,
BaseSubchannelWrapper,
ConnectivityStateListener,
HealthListener,
} from './subchannel-interface';
export {
OutlierDetectionRawConfig,
SuccessRateEjectionConfig,
FailurePercentageEjectionConfig,
} from './load-balancer-outlier-detection';
export { createServerCredentialsWithInterceptors, createCertificateProviderServerCredentials } from './server-credentials';
export {
CaCertificateUpdate,
CaCertificateUpdateListener,
IdentityCertificateUpdate,
IdentityCertificateUpdateListener,
CertificateProvider,
FileWatcherCertificateProvider,
FileWatcherCertificateProviderConfig
} from './certificate-provider';
export { createCertificateProviderChannelCredentials, SecureConnector, SecureConnectResult } from './channel-credentials';
export { SUBCHANNEL_ARGS_EXCLUDE_KEY_PREFIX } from './internal-channel';