@Generated(value="by gapic-generator-java") public class JobServiceClient extends Object implements BackgroundResource
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
TenantName parent = TenantName.of("[PROJECT]", "[TENANT]");
Job job = Job.newBuilder().build();
Job response = jobServiceClient.createJob(parent, job);
}
Note: close() needs to be called on the JobServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of JobServiceSettings to create(). For example:
To customize credentials:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
JobServiceSettings jobServiceSettings =
JobServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
JobServiceClient jobServiceClient = JobServiceClient.create(jobServiceSettings);
To customize the endpoint:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
JobServiceSettings jobServiceSettings =
JobServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
JobServiceClient jobServiceClient = JobServiceClient.create(jobServiceSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
JobServiceSettings jobServiceSettings =
JobServiceSettings.newBuilder()
.setTransportChannelProvider(
JobServiceSettings.defaultHttpJsonTransportProviderBuilder().build())
.build();
JobServiceClient jobServiceClient = JobServiceClient.create(jobServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Modifier and Type | Class and Description |
---|---|
static class |
JobServiceClient.ListJobsFixedSizeCollection |
static class |
JobServiceClient.ListJobsPage |
static class |
JobServiceClient.ListJobsPagedResponse |
Modifier | Constructor and Description |
---|---|
protected |
JobServiceClient(JobServiceSettings settings)
Constructs an instance of JobServiceClient, using the given settings.
|
protected |
JobServiceClient(JobServiceStub stub) |
Modifier and Type | Method and Description |
---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
OperationFuture<BatchCreateJobsResponse,BatchOperationMetadata> |
batchCreateJobsAsync(BatchCreateJobsRequest request)
Begins executing a batch create jobs operation.
|
OperationFuture<BatchCreateJobsResponse,BatchOperationMetadata> |
batchCreateJobsAsync(String parent,
List<Job> jobs)
Begins executing a batch create jobs operation.
|
OperationFuture<BatchCreateJobsResponse,BatchOperationMetadata> |
batchCreateJobsAsync(TenantName parent,
List<Job> jobs)
Begins executing a batch create jobs operation.
|
UnaryCallable<BatchCreateJobsRequest,Operation> |
batchCreateJobsCallable()
Begins executing a batch create jobs operation.
|
OperationCallable<BatchCreateJobsRequest,BatchCreateJobsResponse,BatchOperationMetadata> |
batchCreateJobsOperationCallable()
Begins executing a batch create jobs operation.
|
OperationFuture<BatchDeleteJobsResponse,BatchOperationMetadata> |
batchDeleteJobsAsync(BatchDeleteJobsRequest request)
Begins executing a batch delete jobs operation.
|
OperationFuture<BatchDeleteJobsResponse,BatchOperationMetadata> |
batchDeleteJobsAsync(String parent,
List<String> names)
Begins executing a batch delete jobs operation.
|
OperationFuture<BatchDeleteJobsResponse,BatchOperationMetadata> |
batchDeleteJobsAsync(TenantName parent,
List<String> names)
Begins executing a batch delete jobs operation.
|
UnaryCallable<BatchDeleteJobsRequest,Operation> |
batchDeleteJobsCallable()
Begins executing a batch delete jobs operation.
|
OperationCallable<BatchDeleteJobsRequest,BatchDeleteJobsResponse,BatchOperationMetadata> |
batchDeleteJobsOperationCallable()
Begins executing a batch delete jobs operation.
|
OperationFuture<BatchUpdateJobsResponse,BatchOperationMetadata> |
batchUpdateJobsAsync(BatchUpdateJobsRequest request)
Begins executing a batch update jobs operation.
|
OperationFuture<BatchUpdateJobsResponse,BatchOperationMetadata> |
batchUpdateJobsAsync(String parent,
List<Job> jobs)
Begins executing a batch update jobs operation.
|
OperationFuture<BatchUpdateJobsResponse,BatchOperationMetadata> |
batchUpdateJobsAsync(TenantName parent,
List<Job> jobs)
Begins executing a batch update jobs operation.
|
UnaryCallable<BatchUpdateJobsRequest,Operation> |
batchUpdateJobsCallable()
Begins executing a batch update jobs operation.
|
OperationCallable<BatchUpdateJobsRequest,BatchUpdateJobsResponse,BatchOperationMetadata> |
batchUpdateJobsOperationCallable()
Begins executing a batch update jobs operation.
|
void |
close() |
static JobServiceClient |
create()
Constructs an instance of JobServiceClient with default settings.
|
static JobServiceClient |
create(JobServiceSettings settings)
Constructs an instance of JobServiceClient, using the given settings.
|
static JobServiceClient |
create(JobServiceStub stub)
Constructs an instance of JobServiceClient, using the given stub for making calls.
|
Job |
createJob(CreateJobRequest request)
Creates a new job.
|
Job |
createJob(String parent,
Job job)
Creates a new job.
|
Job |
createJob(TenantName parent,
Job job)
Creates a new job.
|
UnaryCallable<CreateJobRequest,Job> |
createJobCallable()
Creates a new job.
|
void |
deleteJob(DeleteJobRequest request)
Deletes the specified job.
|
void |
deleteJob(JobName name)
Deletes the specified job.
|
void |
deleteJob(String name)
Deletes the specified job.
|
UnaryCallable<DeleteJobRequest,Empty> |
deleteJobCallable()
Deletes the specified job.
|
OperationsClient |
getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
Job |
getJob(GetJobRequest request)
Retrieves the specified job, whose status is OPEN or recently EXPIRED within the last 90 days.
|
Job |
getJob(JobName name)
Retrieves the specified job, whose status is OPEN or recently EXPIRED within the last 90 days.
|
Job |
getJob(String name)
Retrieves the specified job, whose status is OPEN or recently EXPIRED within the last 90 days.
|
UnaryCallable<GetJobRequest,Job> |
getJobCallable()
Retrieves the specified job, whose status is OPEN or recently EXPIRED within the last 90 days.
|
OperationsClient |
getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
JobServiceSettings |
getSettings() |
JobServiceStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
JobServiceClient.ListJobsPagedResponse |
listJobs(ListJobsRequest request)
Lists jobs by filter.
|
JobServiceClient.ListJobsPagedResponse |
listJobs(String parent,
String filter)
Lists jobs by filter.
|
JobServiceClient.ListJobsPagedResponse |
listJobs(TenantName parent,
String filter)
Lists jobs by filter.
|
UnaryCallable<ListJobsRequest,ListJobsResponse> |
listJobsCallable()
Lists jobs by filter.
|
UnaryCallable<ListJobsRequest,JobServiceClient.ListJobsPagedResponse> |
listJobsPagedCallable()
Lists jobs by filter.
|
SearchJobsResponse |
searchJobs(SearchJobsRequest request)
Searches for jobs using the provided
[SearchJobsRequest][google.cloud.talent.v4.SearchJobsRequest].
|
UnaryCallable<SearchJobsRequest,SearchJobsResponse> |
searchJobsCallable()
Searches for jobs using the provided
[SearchJobsRequest][google.cloud.talent.v4.SearchJobsRequest].
|
SearchJobsResponse |
searchJobsForAlert(SearchJobsRequest request)
Searches for jobs using the provided
[SearchJobsRequest][google.cloud.talent.v4.SearchJobsRequest].
|
UnaryCallable<SearchJobsRequest,SearchJobsResponse> |
searchJobsForAlertCallable()
Searches for jobs using the provided
[SearchJobsRequest][google.cloud.talent.v4.SearchJobsRequest].
|
void |
shutdown() |
void |
shutdownNow() |
Job |
updateJob(Job job,
FieldMask updateMask)
Updates specified job.
|
Job |
updateJob(UpdateJobRequest request)
Updates specified job.
|
UnaryCallable<UpdateJobRequest,Job> |
updateJobCallable()
Updates specified job.
|
protected JobServiceClient(JobServiceSettings settings) throws IOException
IOException
protected JobServiceClient(JobServiceStub stub)
public static final JobServiceClient create() throws IOException
IOException
public static final JobServiceClient create(JobServiceSettings settings) throws IOException
IOException
public static final JobServiceClient create(JobServiceStub stub)
public final JobServiceSettings getSettings()
public JobServiceStub getStub()
public final OperationsClient getOperationsClient()
@BetaApi public final OperationsClient getHttpJsonOperationsClient()
public final Job createJob(TenantName parent, Job job)
Typically, the job becomes searchable within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
TenantName parent = TenantName.of("[PROJECT]", "[TENANT]");
Job job = Job.newBuilder().build();
Job response = jobServiceClient.createJob(parent, job);
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
job
- Required. The Job to be created.ApiException
- if the remote call failspublic final Job createJob(String parent, Job job)
Typically, the job becomes searchable within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
String parent = TenantName.of("[PROJECT]", "[TENANT]").toString();
Job job = Job.newBuilder().build();
Job response = jobServiceClient.createJob(parent, job);
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
job
- Required. The Job to be created.ApiException
- if the remote call failspublic final Job createJob(CreateJobRequest request)
Typically, the job becomes searchable within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
CreateJobRequest request =
CreateJobRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setJob(Job.newBuilder().build())
.build();
Job response = jobServiceClient.createJob(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<CreateJobRequest,Job> createJobCallable()
Typically, the job becomes searchable within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
CreateJobRequest request =
CreateJobRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setJob(Job.newBuilder().build())
.build();
ApiFuture<Job> future = jobServiceClient.createJobCallable().futureCall(request);
// Do something.
Job response = future.get();
}
public final OperationFuture<BatchCreateJobsResponse,BatchOperationMetadata> batchCreateJobsAsync(TenantName parent, List<Job> jobs)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
TenantName parent = TenantName.of("[PROJECT]", "[TENANT]");
List<Job> jobs = new ArrayList<>();
BatchCreateJobsResponse response = jobServiceClient.batchCreateJobsAsync(parent, jobs).get();
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
jobs
- Required. The jobs to be created. A maximum of 200 jobs can be created in a batch.ApiException
- if the remote call failspublic final OperationFuture<BatchCreateJobsResponse,BatchOperationMetadata> batchCreateJobsAsync(String parent, List<Job> jobs)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
String parent = TenantName.of("[PROJECT]", "[TENANT]").toString();
List<Job> jobs = new ArrayList<>();
BatchCreateJobsResponse response = jobServiceClient.batchCreateJobsAsync(parent, jobs).get();
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
jobs
- Required. The jobs to be created. A maximum of 200 jobs can be created in a batch.ApiException
- if the remote call failspublic final OperationFuture<BatchCreateJobsResponse,BatchOperationMetadata> batchCreateJobsAsync(BatchCreateJobsRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchCreateJobsRequest request =
BatchCreateJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllJobs(new ArrayList<Job>())
.build();
BatchCreateJobsResponse response = jobServiceClient.batchCreateJobsAsync(request).get();
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final OperationCallable<BatchCreateJobsRequest,BatchCreateJobsResponse,BatchOperationMetadata> batchCreateJobsOperationCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchCreateJobsRequest request =
BatchCreateJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllJobs(new ArrayList<Job>())
.build();
OperationFuture<BatchCreateJobsResponse, BatchOperationMetadata> future =
jobServiceClient.batchCreateJobsOperationCallable().futureCall(request);
// Do something.
BatchCreateJobsResponse response = future.get();
}
public final UnaryCallable<BatchCreateJobsRequest,Operation> batchCreateJobsCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchCreateJobsRequest request =
BatchCreateJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllJobs(new ArrayList<Job>())
.build();
ApiFuture<Operation> future = jobServiceClient.batchCreateJobsCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final Job getJob(JobName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
JobName name = JobName.of("[PROJECT]", "[TENANT]", "[JOB]");
Job response = jobServiceClient.getJob(name);
}
name
- Required. The resource name of the job to retrieve.
The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}". For example, "projects/foo/tenants/bar/jobs/baz".
ApiException
- if the remote call failspublic final Job getJob(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
String name = JobName.of("[PROJECT]", "[TENANT]", "[JOB]").toString();
Job response = jobServiceClient.getJob(name);
}
name
- Required. The resource name of the job to retrieve.
The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}". For example, "projects/foo/tenants/bar/jobs/baz".
ApiException
- if the remote call failspublic final Job getJob(GetJobRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
GetJobRequest request =
GetJobRequest.newBuilder()
.setName(JobName.of("[PROJECT]", "[TENANT]", "[JOB]").toString())
.build();
Job response = jobServiceClient.getJob(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<GetJobRequest,Job> getJobCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
GetJobRequest request =
GetJobRequest.newBuilder()
.setName(JobName.of("[PROJECT]", "[TENANT]", "[JOB]").toString())
.build();
ApiFuture<Job> future = jobServiceClient.getJobCallable().futureCall(request);
// Do something.
Job response = future.get();
}
public final Job updateJob(Job job, FieldMask updateMask)
Typically, updated contents become visible in search results within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
Job job = Job.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Job response = jobServiceClient.updateJob(job, updateMask);
}
job
- Required. The Job to be updated.updateMask
- Strongly recommended for the best service experience.
If [update_mask][google.cloud.talent.v4.UpdateJobRequest.update_mask] is provided, only the specified fields in [job][google.cloud.talent.v4.UpdateJobRequest.job] are updated. Otherwise all the fields are updated.
A field mask to restrict the fields that are updated. Only top level fields of [Job][google.cloud.talent.v4.Job] are supported.
ApiException
- if the remote call failspublic final Job updateJob(UpdateJobRequest request)
Typically, updated contents become visible in search results within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
UpdateJobRequest request =
UpdateJobRequest.newBuilder()
.setJob(Job.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Job response = jobServiceClient.updateJob(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<UpdateJobRequest,Job> updateJobCallable()
Typically, updated contents become visible in search results within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
UpdateJobRequest request =
UpdateJobRequest.newBuilder()
.setJob(Job.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Job> future = jobServiceClient.updateJobCallable().futureCall(request);
// Do something.
Job response = future.get();
}
public final OperationFuture<BatchUpdateJobsResponse,BatchOperationMetadata> batchUpdateJobsAsync(TenantName parent, List<Job> jobs)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
TenantName parent = TenantName.of("[PROJECT]", "[TENANT]");
List<Job> jobs = new ArrayList<>();
BatchUpdateJobsResponse response = jobServiceClient.batchUpdateJobsAsync(parent, jobs).get();
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
jobs
- Required. The jobs to be updated. A maximum of 200 jobs can be updated in a batch.ApiException
- if the remote call failspublic final OperationFuture<BatchUpdateJobsResponse,BatchOperationMetadata> batchUpdateJobsAsync(String parent, List<Job> jobs)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
String parent = TenantName.of("[PROJECT]", "[TENANT]").toString();
List<Job> jobs = new ArrayList<>();
BatchUpdateJobsResponse response = jobServiceClient.batchUpdateJobsAsync(parent, jobs).get();
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
jobs
- Required. The jobs to be updated. A maximum of 200 jobs can be updated in a batch.ApiException
- if the remote call failspublic final OperationFuture<BatchUpdateJobsResponse,BatchOperationMetadata> batchUpdateJobsAsync(BatchUpdateJobsRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchUpdateJobsRequest request =
BatchUpdateJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllJobs(new ArrayList<Job>())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
BatchUpdateJobsResponse response = jobServiceClient.batchUpdateJobsAsync(request).get();
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final OperationCallable<BatchUpdateJobsRequest,BatchUpdateJobsResponse,BatchOperationMetadata> batchUpdateJobsOperationCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchUpdateJobsRequest request =
BatchUpdateJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllJobs(new ArrayList<Job>())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
OperationFuture<BatchUpdateJobsResponse, BatchOperationMetadata> future =
jobServiceClient.batchUpdateJobsOperationCallable().futureCall(request);
// Do something.
BatchUpdateJobsResponse response = future.get();
}
public final UnaryCallable<BatchUpdateJobsRequest,Operation> batchUpdateJobsCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchUpdateJobsRequest request =
BatchUpdateJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllJobs(new ArrayList<Job>())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Operation> future = jobServiceClient.batchUpdateJobsCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final void deleteJob(JobName name)
Typically, the job becomes unsearchable within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
JobName name = JobName.of("[PROJECT]", "[TENANT]", "[JOB]");
jobServiceClient.deleteJob(name);
}
name
- Required. The resource name of the job to be deleted.
The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}". For example, "projects/foo/tenants/bar/jobs/baz".
ApiException
- if the remote call failspublic final void deleteJob(String name)
Typically, the job becomes unsearchable within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
String name = JobName.of("[PROJECT]", "[TENANT]", "[JOB]").toString();
jobServiceClient.deleteJob(name);
}
name
- Required. The resource name of the job to be deleted.
The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}". For example, "projects/foo/tenants/bar/jobs/baz".
ApiException
- if the remote call failspublic final void deleteJob(DeleteJobRequest request)
Typically, the job becomes unsearchable within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
DeleteJobRequest request =
DeleteJobRequest.newBuilder()
.setName(JobName.of("[PROJECT]", "[TENANT]", "[JOB]").toString())
.build();
jobServiceClient.deleteJob(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<DeleteJobRequest,Empty> deleteJobCallable()
Typically, the job becomes unsearchable within 10 seconds, but it may take up to 5 minutes.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
DeleteJobRequest request =
DeleteJobRequest.newBuilder()
.setName(JobName.of("[PROJECT]", "[TENANT]", "[JOB]").toString())
.build();
ApiFuture<Empty> future = jobServiceClient.deleteJobCallable().futureCall(request);
// Do something.
future.get();
}
public final OperationFuture<BatchDeleteJobsResponse,BatchOperationMetadata> batchDeleteJobsAsync(TenantName parent, List<String> names)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
TenantName parent = TenantName.of("[PROJECT]", "[TENANT]");
List<String> names = new ArrayList<>();
BatchDeleteJobsResponse response = jobServiceClient.batchDeleteJobsAsync(parent, names).get();
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
The parent of all of the jobs specified in `names` must match this field.
names
- The names of the jobs to delete.
The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}". For example, "projects/foo/tenants/bar/jobs/baz".
A maximum of 200 jobs can be deleted in a batch.
ApiException
- if the remote call failspublic final OperationFuture<BatchDeleteJobsResponse,BatchOperationMetadata> batchDeleteJobsAsync(String parent, List<String> names)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
String parent = TenantName.of("[PROJECT]", "[TENANT]").toString();
List<String> names = new ArrayList<>();
BatchDeleteJobsResponse response = jobServiceClient.batchDeleteJobsAsync(parent, names).get();
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
The parent of all of the jobs specified in `names` must match this field.
names
- The names of the jobs to delete.
The format is "projects/{project_id}/tenants/{tenant_id}/jobs/{job_id}". For example, "projects/foo/tenants/bar/jobs/baz".
A maximum of 200 jobs can be deleted in a batch.
ApiException
- if the remote call failspublic final OperationFuture<BatchDeleteJobsResponse,BatchOperationMetadata> batchDeleteJobsAsync(BatchDeleteJobsRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchDeleteJobsRequest request =
BatchDeleteJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllNames(new ArrayList<String>())
.build();
BatchDeleteJobsResponse response = jobServiceClient.batchDeleteJobsAsync(request).get();
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final OperationCallable<BatchDeleteJobsRequest,BatchDeleteJobsResponse,BatchOperationMetadata> batchDeleteJobsOperationCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchDeleteJobsRequest request =
BatchDeleteJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllNames(new ArrayList<String>())
.build();
OperationFuture<BatchDeleteJobsResponse, BatchOperationMetadata> future =
jobServiceClient.batchDeleteJobsOperationCallable().futureCall(request);
// Do something.
BatchDeleteJobsResponse response = future.get();
}
public final UnaryCallable<BatchDeleteJobsRequest,Operation> batchDeleteJobsCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
BatchDeleteJobsRequest request =
BatchDeleteJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.addAllNames(new ArrayList<String>())
.build();
ApiFuture<Operation> future = jobServiceClient.batchDeleteJobsCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final JobServiceClient.ListJobsPagedResponse listJobs(TenantName parent, String filter)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
TenantName parent = TenantName.of("[PROJECT]", "[TENANT]");
String filter = "filter-1274492040";
for (Job element : jobServiceClient.listJobs(parent, filter).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
filter
- Required. The filter string specifies the jobs to be enumerated.
Supported operator: =, AND
The fields eligible for filtering are:
At least one of `companyName` and `requisitionId` must present or an INVALID_ARGUMENT error is thrown.
Sample Query:
ApiException
- if the remote call failspublic final JobServiceClient.ListJobsPagedResponse listJobs(String parent, String filter)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
String parent = TenantName.of("[PROJECT]", "[TENANT]").toString();
String filter = "filter-1274492040";
for (Job element : jobServiceClient.listJobs(parent, filter).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The resource name of the tenant under which the job is created.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
filter
- Required. The filter string specifies the jobs to be enumerated.
Supported operator: =, AND
The fields eligible for filtering are:
At least one of `companyName` and `requisitionId` must present or an INVALID_ARGUMENT error is thrown.
Sample Query:
ApiException
- if the remote call failspublic final JobServiceClient.ListJobsPagedResponse listJobs(ListJobsRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
ListJobsRequest request =
ListJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setFilter("filter-1274492040")
.setPageToken("pageToken873572522")
.setPageSize(883849137)
.setJobView(JobView.forNumber(0))
.build();
for (Job element : jobServiceClient.listJobs(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<ListJobsRequest,JobServiceClient.ListJobsPagedResponse> listJobsPagedCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
ListJobsRequest request =
ListJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setFilter("filter-1274492040")
.setPageToken("pageToken873572522")
.setPageSize(883849137)
.setJobView(JobView.forNumber(0))
.build();
ApiFuture<Job> future = jobServiceClient.listJobsPagedCallable().futureCall(request);
// Do something.
for (Job element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<ListJobsRequest,ListJobsResponse> listJobsCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
ListJobsRequest request =
ListJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setFilter("filter-1274492040")
.setPageToken("pageToken873572522")
.setPageSize(883849137)
.setJobView(JobView.forNumber(0))
.build();
while (true) {
ListJobsResponse response = jobServiceClient.listJobsCallable().call(request);
for (Job element : response.getJobsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final SearchJobsResponse searchJobs(SearchJobsRequest request)
This call constrains the [visibility][google.cloud.talent.v4.Job.visibility] of jobs present in the database, and only returns jobs that the caller has permission to search against.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
SearchJobsRequest request =
SearchJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setRequestMetadata(RequestMetadata.newBuilder().build())
.setJobQuery(JobQuery.newBuilder().build())
.setEnableBroadening(true)
.addAllHistogramQueries(new ArrayList<HistogramQuery>())
.setJobView(JobView.forNumber(0))
.setOffset(-1019779949)
.setMaxPageSize(524069526)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.setCustomRankingInfo(SearchJobsRequest.CustomRankingInfo.newBuilder().build())
.setDisableKeywordMatch(true)
.build();
SearchJobsResponse response = jobServiceClient.searchJobs(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<SearchJobsRequest,SearchJobsResponse> searchJobsCallable()
This call constrains the [visibility][google.cloud.talent.v4.Job.visibility] of jobs present in the database, and only returns jobs that the caller has permission to search against.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
SearchJobsRequest request =
SearchJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setRequestMetadata(RequestMetadata.newBuilder().build())
.setJobQuery(JobQuery.newBuilder().build())
.setEnableBroadening(true)
.addAllHistogramQueries(new ArrayList<HistogramQuery>())
.setJobView(JobView.forNumber(0))
.setOffset(-1019779949)
.setMaxPageSize(524069526)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.setCustomRankingInfo(SearchJobsRequest.CustomRankingInfo.newBuilder().build())
.setDisableKeywordMatch(true)
.build();
ApiFuture<SearchJobsResponse> future =
jobServiceClient.searchJobsCallable().futureCall(request);
// Do something.
SearchJobsResponse response = future.get();
}
public final SearchJobsResponse searchJobsForAlert(SearchJobsRequest request)
This API call is intended for the use case of targeting passive job seekers (for example, job seekers who have signed up to receive email alerts about potential job opportunities), it has different algorithmic adjustments that are designed to specifically target passive job seekers.
This call constrains the [visibility][google.cloud.talent.v4.Job.visibility] of jobs present in the database, and only returns jobs the caller has permission to search against.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
SearchJobsRequest request =
SearchJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setRequestMetadata(RequestMetadata.newBuilder().build())
.setJobQuery(JobQuery.newBuilder().build())
.setEnableBroadening(true)
.addAllHistogramQueries(new ArrayList<HistogramQuery>())
.setJobView(JobView.forNumber(0))
.setOffset(-1019779949)
.setMaxPageSize(524069526)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.setCustomRankingInfo(SearchJobsRequest.CustomRankingInfo.newBuilder().build())
.setDisableKeywordMatch(true)
.build();
SearchJobsResponse response = jobServiceClient.searchJobsForAlert(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<SearchJobsRequest,SearchJobsResponse> searchJobsForAlertCallable()
This API call is intended for the use case of targeting passive job seekers (for example, job seekers who have signed up to receive email alerts about potential job opportunities), it has different algorithmic adjustments that are designed to specifically target passive job seekers.
This call constrains the [visibility][google.cloud.talent.v4.Job.visibility] of jobs present in the database, and only returns jobs the caller has permission to search against.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
SearchJobsRequest request =
SearchJobsRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setRequestMetadata(RequestMetadata.newBuilder().build())
.setJobQuery(JobQuery.newBuilder().build())
.setEnableBroadening(true)
.addAllHistogramQueries(new ArrayList<HistogramQuery>())
.setJobView(JobView.forNumber(0))
.setOffset(-1019779949)
.setMaxPageSize(524069526)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.setCustomRankingInfo(SearchJobsRequest.CustomRankingInfo.newBuilder().build())
.setDisableKeywordMatch(true)
.build();
ApiFuture<SearchJobsResponse> future =
jobServiceClient.searchJobsForAlertCallable().futureCall(request);
// Do something.
SearchJobsResponse response = future.get();
}
public final void close()
close
in interface AutoCloseable
public void shutdown()
shutdown
in interface BackgroundResource
public boolean isShutdown()
isShutdown
in interface BackgroundResource
public boolean isTerminated()
isTerminated
in interface BackgroundResource
public void shutdownNow()
shutdownNow
in interface BackgroundResource
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException
awaitTermination
in interface BackgroundResource
InterruptedException
Copyright © 2022 Google LLC. All rights reserved.