Google Cloud Talent Solution v4 API - Class EventService.EventServiceClient (2.5.0)

public class EventService.EventServiceClient : ClientBase<EventService.EventServiceClient>

Reference documentation and code samples for the Google Cloud Talent Solution v4 API class EventService.EventServiceClient.

Client for EventService

Inheritance

object > ClientBase > ClientBaseEventServiceEventServiceClient > EventService.EventServiceClient

Namespace

Google.Cloud.Talent.V4

Assembly

Google.Cloud.Talent.V4.dll

Constructors

EventServiceClient()

protected EventServiceClient()

Protected parameterless constructor to allow creation of test doubles.

EventServiceClient(CallInvoker)

public EventServiceClient(CallInvoker callInvoker)

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

Parameter
NameDescription
callInvokerCallInvoker

The callInvoker to use to make remote calls.

EventServiceClient(ChannelBase)

public EventServiceClient(ChannelBase channel)

Creates a new client for EventService

Parameter
NameDescription
channelChannelBase

The channel to use to make remote calls.

EventServiceClient(ClientBaseConfiguration)

protected EventServiceClient(ClientBase.ClientBaseConfiguration configuration)

Protected constructor to allow creation of configured clients.

Parameter
NameDescription
configurationClientBaseClientBaseConfiguration

The client configuration.

Methods

CreateClientEvent(CreateClientEventRequest, CallOptions)

public virtual ClientEvent CreateClientEvent(CreateClientEventRequest request, CallOptions options)

Report events issued when end user interacts with customer's application that uses Cloud Talent Solution. You may inspect the created events in self service tools. Learn more about self service tools.

Parameters
NameDescription
requestCreateClientEventRequest

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
ClientEvent

The response received from the server.

CreateClientEvent(CreateClientEventRequest, Metadata, DateTime?, CancellationToken)

public virtual ClientEvent CreateClientEvent(CreateClientEventRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Report events issued when end user interacts with customer's application that uses Cloud Talent Solution. You may inspect the created events in self service tools. Learn more about self service tools.

Parameters
NameDescription
requestCreateClientEventRequest

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
ClientEvent

The response received from the server.

CreateClientEventAsync(CreateClientEventRequest, CallOptions)

public virtual AsyncUnaryCall<ClientEvent> CreateClientEventAsync(CreateClientEventRequest request, CallOptions options)

Report events issued when end user interacts with customer's application that uses Cloud Talent Solution. You may inspect the created events in self service tools. Learn more about self service tools.

Parameters
NameDescription
requestCreateClientEventRequest

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
AsyncUnaryCallClientEvent

The call object.

CreateClientEventAsync(CreateClientEventRequest, Metadata, DateTime?, CancellationToken)

public virtual AsyncUnaryCall<ClientEvent> CreateClientEventAsync(CreateClientEventRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Report events issued when end user interacts with customer's application that uses Cloud Talent Solution. You may inspect the created events in self service tools. Learn more about self service tools.

Parameters
NameDescription
requestCreateClientEventRequest

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
AsyncUnaryCallClientEvent

The call object.

NewInstance(ClientBaseConfiguration)

protected override EventService.EventServiceClient NewInstance(ClientBase.ClientBaseConfiguration configuration)

Creates a new instance of client from given ClientBaseConfiguration.

Parameter
NameDescription
configurationClientBaseClientBaseConfiguration
Returns
TypeDescription
EventServiceEventServiceClient
Overrides