[BindServiceMethod(typeof(TraceService), "BindService")]
public abstract class TraceServiceBase
Base class for server-side implementations of TraceService
Namespace
Google.Cloud.Trace.V2Assembly
Google.Cloud.Trace.V2.dll
Methods
BatchWriteSpans(BatchWriteSpansRequest, ServerCallContext)
public virtual Task<Empty> BatchWriteSpans(BatchWriteSpansRequest request, ServerCallContext context)
Sends new spans to new or existing traces. You cannot update existing spans.
Parameters | |
---|---|
Name | Description |
request | BatchWriteSpansRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Empty> | The response to send back to the client (wrapped by a task). |
CreateSpan(Span, ServerCallContext)
public virtual Task<Span> CreateSpan(Span request, ServerCallContext context)
Creates a new span.
Parameters | |
---|---|
Name | Description |
request | Span The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
Task<Span> | The response to send back to the client (wrapped by a task). |