Google Cloud Trace v2 API - Class TraceService.TraceServiceClient (3.5.0)

public class TraceService.TraceServiceClient : ClientBase<TraceService.TraceServiceClient>

Reference documentation and code samples for the Google Cloud Trace v2 API class TraceService.TraceServiceClient.

Client for TraceService

Inheritance

object > ClientBase > ClientBaseTraceServiceTraceServiceClient > TraceService.TraceServiceClient

Namespace

Google.Cloud.Trace.V2

Assembly

Google.Cloud.Trace.V2.dll

Constructors

TraceServiceClient()

protected TraceServiceClient()

Protected parameterless constructor to allow creation of test doubles.

TraceServiceClient(CallInvoker)

public TraceServiceClient(CallInvoker callInvoker)

Creates a new client for TraceService that uses a custom CallInvoker.

Parameter
NameDescription
callInvokerCallInvoker

The callInvoker to use to make remote calls.

TraceServiceClient(ChannelBase)

public TraceServiceClient(ChannelBase channel)

Creates a new client for TraceService

Parameter
NameDescription
channelChannelBase

The channel to use to make remote calls.

TraceServiceClient(ClientBaseConfiguration)

protected TraceServiceClient(ClientBase.ClientBaseConfiguration configuration)

Protected constructor to allow creation of configured clients.

Parameter
NameDescription
configurationClientBaseClientBaseConfiguration

The client configuration.

Methods

BatchWriteSpans(BatchWriteSpansRequest, CallOptions)

public virtual Empty BatchWriteSpans(BatchWriteSpansRequest request, CallOptions options)

Batch writes new spans to new or existing traces. You cannot update existing spans.

Parameters
NameDescription
requestBatchWriteSpansRequest

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
Empty

The response received from the server.

BatchWriteSpans(BatchWriteSpansRequest, Metadata, DateTime?, CancellationToken)

public virtual Empty BatchWriteSpans(BatchWriteSpansRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Batch writes new spans to new or existing traces. You cannot update existing spans.

Parameters
NameDescription
requestBatchWriteSpansRequest

The request to send to the server.

headersMetadata

The initial metadata to send with the call. This parameter is optional.

deadlineDateTime

An optional deadline for the call. The call will be cancelled if deadline is hit.

cancellationTokenCancellationToken

An optional token for canceling the call.

Returns
TypeDescription
Empty

The response received from the server.

BatchWriteSpansAsync(BatchWriteSpansRequest, CallOptions)

public virtual AsyncUnaryCall<Empty> BatchWriteSpansAsync(BatchWriteSpansRequest request, CallOptions options)

Batch writes new spans to new or existing traces. You cannot update existing spans.

Parameters
NameDescription
requestBatchWriteSpansRequest

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
AsyncUnaryCallEmpty

The call object.

BatchWriteSpansAsync(BatchWriteSpansRequest, Metadata, DateTime?, CancellationToken)

public virtual AsyncUnaryCall<Empty> BatchWriteSpansAsync(BatchWriteSpansRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Batch writes new spans to new or existing traces. You cannot update existing spans.

Parameters
NameDescription
requestBatchWriteSpansRequest

The request to send to the server.

headersMetadata

The initial metadata to send with the call. This parameter is optional.

deadlineDateTime

An optional deadline for the call. The call will be cancelled if deadline is hit.

cancellationTokenCancellationToken

An optional token for canceling the call.

Returns
TypeDescription
AsyncUnaryCallEmpty

The call object.

CreateSpan(Span, CallOptions)

public virtual Span CreateSpan(Span request, CallOptions options)

Creates a new span.

Parameters
NameDescription
requestSpan

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
Span

The response received from the server.

CreateSpan(Span, Metadata, DateTime?, CancellationToken)

public virtual Span CreateSpan(Span request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Creates a new span.

Parameters
NameDescription
requestSpan

The request to send to the server.

headersMetadata

The initial metadata to send with the call. This parameter is optional.

deadlineDateTime

An optional deadline for the call. The call will be cancelled if deadline is hit.

cancellationTokenCancellationToken

An optional token for canceling the call.

Returns
TypeDescription
Span

The response received from the server.

CreateSpanAsync(Span, CallOptions)

public virtual AsyncUnaryCall<Span> CreateSpanAsync(Span request, CallOptions options)

Creates a new span.

Parameters
NameDescription
requestSpan

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
AsyncUnaryCallSpan

The call object.

CreateSpanAsync(Span, Metadata, DateTime?, CancellationToken)

public virtual AsyncUnaryCall<Span> CreateSpanAsync(Span request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Creates a new span.

Parameters
NameDescription
requestSpan

The request to send to the server.

headersMetadata

The initial metadata to send with the call. This parameter is optional.

deadlineDateTime

An optional deadline for the call. The call will be cancelled if deadline is hit.

cancellationTokenCancellationToken

An optional token for canceling the call.

Returns
TypeDescription
AsyncUnaryCallSpan

The call object.

NewInstance(ClientBaseConfiguration)

protected override TraceService.TraceServiceClient NewInstance(ClientBase.ClientBaseConfiguration configuration)

Creates a new instance of client from given ClientBaseConfiguration.

Parameter
NameDescription
configurationClientBaseClientBaseConfiguration
Returns
TypeDescription
TraceServiceTraceServiceClient
Overrides