public static final class JobServiceGrpc.JobServiceStub extends AbstractAsyncStub<JobServiceGrpc.JobServiceStub>
A service handles job management, including job CRUD, enumeration and search.
Inheritance
java.lang.Object >
io.grpc.stub.AbstractStub >
io.grpc.stub.AbstractAsyncStub >
JobServiceGrpc.JobServiceStub
Inherited Members
io.grpc.stub.AbstractAsyncStub.<T>newStub(io.grpc.stub.AbstractStub.StubFactory<T>,io.grpc.Channel)
io.grpc.stub.AbstractAsyncStub.<T>newStub(io.grpc.stub.AbstractStub.StubFactory<T>,io.grpc.Channel,io.grpc.CallOptions)
io.grpc.stub.AbstractStub.<T>withOption(io.grpc.CallOptions.Key<T>,T)
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)
io.grpc.stub.AbstractStub.getCallOptions()
io.grpc.stub.AbstractStub.getChannel()
io.grpc.stub.AbstractStub.withCallCredentials(io.grpc.CallCredentials)
io.grpc.stub.AbstractStub.withChannel(io.grpc.Channel)
io.grpc.stub.AbstractStub.withCompression(java.lang.String)
io.grpc.stub.AbstractStub.withDeadline(io.grpc.Deadline)
io.grpc.stub.AbstractStub.withDeadlineAfter(long,java.util.concurrent.TimeUnit)
io.grpc.stub.AbstractStub.withExecutor(java.util.concurrent.Executor)
io.grpc.stub.AbstractStub.withInterceptors(io.grpc.ClientInterceptor...)
io.grpc.stub.AbstractStub.withMaxInboundMessageSize(int)
io.grpc.stub.AbstractStub.withMaxOutboundMessageSize(int)
io.grpc.stub.AbstractStub.withWaitForReady()
Methods
batchCreateJobs(BatchCreateJobsRequest request, StreamObserver<Operation> responseObserver)
public void batchCreateJobs(BatchCreateJobsRequest request, StreamObserver<Operation> responseObserver)
Begins executing a batch create jobs operation.
Parameters
batchDeleteJobs(BatchDeleteJobsRequest request, StreamObserver<Operation> responseObserver)
public void batchDeleteJobs(BatchDeleteJobsRequest request, StreamObserver<Operation> responseObserver)
Begins executing a batch delete jobs operation.
Parameters
batchUpdateJobs(BatchUpdateJobsRequest request, StreamObserver<Operation> responseObserver)
public void batchUpdateJobs(BatchUpdateJobsRequest request, StreamObserver<Operation> responseObserver)
Begins executing a batch update jobs operation.
Parameters
build(Channel channel, CallOptions callOptions)
protected JobServiceGrpc.JobServiceStub build(Channel channel, CallOptions callOptions)
Parameters
Name | Description |
channel | io.grpc.Channel
|
callOptions | io.grpc.CallOptions
|
Returns
Overrides
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)
createJob(CreateJobRequest request, StreamObserver<Job> responseObserver)
public void createJob(CreateJobRequest request, StreamObserver<Job> responseObserver)
Creates a new job.
Typically, the job becomes searchable within 10 seconds, but it may take
up to 5 minutes.
Parameters
deleteJob(DeleteJobRequest request, StreamObserver<Empty> responseObserver)
public void deleteJob(DeleteJobRequest request, StreamObserver<Empty> responseObserver)
Deletes the specified job.
Typically, the job becomes unsearchable within 10 seconds, but it may take
up to 5 minutes.
Parameters
getJob(GetJobRequest request, StreamObserver<Job> responseObserver)
public void getJob(GetJobRequest request, StreamObserver<Job> responseObserver)
Retrieves the specified job, whose status is OPEN or recently EXPIRED
within the last 90 days.
Parameters
Name | Description |
request | GetJobRequest
|
responseObserver | io.grpc.stub.StreamObserver<Job>
|
listJobs(ListJobsRequest request, StreamObserver<ListJobsResponse> responseObserver)
public void listJobs(ListJobsRequest request, StreamObserver<ListJobsResponse> responseObserver)
Parameters
searchJobs(SearchJobsRequest request, StreamObserver<SearchJobsResponse> responseObserver)
public void searchJobs(SearchJobsRequest request, StreamObserver<SearchJobsResponse> responseObserver)
Searches for jobs using the provided
SearchJobsRequest.
This call constrains the
visibility of jobs present in the
database, and only returns jobs that the caller has permission to search
against.
Parameters
searchJobsForAlert(SearchJobsRequest request, StreamObserver<SearchJobsResponse> responseObserver)
public void searchJobsForAlert(SearchJobsRequest request, StreamObserver<SearchJobsResponse> responseObserver)
Searches for jobs using the provided
SearchJobsRequest.
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 of jobs present in the
database, and only returns jobs the caller has permission to search
against.
Parameters
updateJob(UpdateJobRequest request, StreamObserver<Job> responseObserver)
public void updateJob(UpdateJobRequest request, StreamObserver<Job> responseObserver)
Updates specified job.
Typically, updated contents become visible in search results within 10
seconds, but it may take up to 5 minutes.
Parameters