Class DocumentServiceGrpc.DocumentServiceFutureStub (0.37.0)

public static final class DocumentServiceGrpc.DocumentServiceFutureStub extends AbstractFutureStub<DocumentServiceGrpc.DocumentServiceFutureStub>

A stub to allow clients to do ListenableFuture-style rpc calls to service DocumentService.

Service for ingesting Document information of the customer's website.

Inheritance

java.lang.Object > io.grpc.stub.AbstractStub > io.grpc.stub.AbstractFutureStub > DocumentServiceGrpc.DocumentServiceFutureStub

Methods

build(Channel channel, CallOptions callOptions)

protected DocumentServiceGrpc.DocumentServiceFutureStub build(Channel channel, CallOptions callOptions)
Parameters
NameDescription
channelio.grpc.Channel
callOptionsio.grpc.CallOptions
Returns
TypeDescription
DocumentServiceGrpc.DocumentServiceFutureStub
Overrides
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)

createDocument(CreateDocumentRequest request)

public ListenableFuture<Document> createDocument(CreateDocumentRequest request)

Creates a Document.

Parameter
NameDescription
requestCreateDocumentRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<Document>

deleteDocument(DeleteDocumentRequest request)

public ListenableFuture<Empty> deleteDocument(DeleteDocumentRequest request)

Deletes a Document.

Parameter
NameDescription
requestDeleteDocumentRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<Empty>

getDocument(GetDocumentRequest request)

public ListenableFuture<Document> getDocument(GetDocumentRequest request)

Gets a Document.

Parameter
NameDescription
requestGetDocumentRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<Document>

importDocuments(ImportDocumentsRequest request)

public ListenableFuture<Operation> importDocuments(ImportDocumentsRequest request)

Bulk import of multiple Documents. Request processing may be synchronous. Non-existing items will be created. Note: It is possible for a subset of the Documents to be successfully updated.

Parameter
NameDescription
requestImportDocumentsRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<Operation>

listDocuments(ListDocumentsRequest request)

public ListenableFuture<ListDocumentsResponse> listDocuments(ListDocumentsRequest request)

Gets a list of Documents.

Parameter
NameDescription
requestListDocumentsRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<ListDocumentsResponse>

purgeDocuments(PurgeDocumentsRequest request)

public ListenableFuture<Operation> purgeDocuments(PurgeDocumentsRequest request)

Permanently deletes all selected Documents in a branch. This process is asynchronous. Depending on the number of Documents to be deleted, this operation can take hours to complete. Before the delete operation completes, some Documents might still be returned by DocumentService.GetDocument or DocumentService.ListDocuments. To get a list of the Documents to be deleted, set PurgeDocumentsRequest.force to false.

Parameter
NameDescription
requestPurgeDocumentsRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<Operation>

updateDocument(UpdateDocumentRequest request)

public ListenableFuture<Document> updateDocument(UpdateDocumentRequest request)

Updates a Document.

Parameter
NameDescription
requestUpdateDocumentRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<Document>