GitHub Repository | Product Reference |
Service Description: Service for a LFP partner to submit sales data for a merchant.
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 (LfpSaleServiceClient lfpSaleServiceClient = LfpSaleServiceClient.create()) {
InsertLfpSaleRequest request =
InsertLfpSaleRequest.newBuilder()
.setParent("parent-995424086")
.setLfpSale(LfpSale.newBuilder().build())
.build();
LfpSale response = lfpSaleServiceClient.insertLfpSale(request);
}
Note: close() needs to be called on the LfpSaleServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
Method | Description | Method Variants |
---|---|---|
InsertLfpSale |
Inserts a |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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 LfpSaleServiceSettings 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
LfpSaleServiceSettings lfpSaleServiceSettings =
LfpSaleServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
LfpSaleServiceClient lfpSaleServiceClient = LfpSaleServiceClient.create(lfpSaleServiceSettings);
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
LfpSaleServiceSettings lfpSaleServiceSettings =
LfpSaleServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
LfpSaleServiceClient lfpSaleServiceClient = LfpSaleServiceClient.create(lfpSaleServiceSettings);
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
LfpSaleServiceSettings lfpSaleServiceSettings =
LfpSaleServiceSettings.newHttpJsonBuilder().build();
LfpSaleServiceClient lfpSaleServiceClient = LfpSaleServiceClient.create(lfpSaleServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final LfpSaleServiceClient create()
Constructs an instance of LfpSaleServiceClient with default settings.
Returns | |
---|---|
Type | Description |
LfpSaleServiceClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(LfpSaleServiceSettings settings)
public static final LfpSaleServiceClient create(LfpSaleServiceSettings settings)
Constructs an instance of LfpSaleServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
Parameter | |
---|---|
Name | Description |
settings |
LfpSaleServiceSettings |
Returns | |
---|---|
Type | Description |
LfpSaleServiceClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(LfpSaleServiceStub stub)
public static final LfpSaleServiceClient create(LfpSaleServiceStub stub)
Constructs an instance of LfpSaleServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(LfpSaleServiceSettings).
Parameter | |
---|---|
Name | Description |
stub |
LfpSaleServiceStub |
Returns | |
---|---|
Type | Description |
LfpSaleServiceClient |
Constructors
LfpSaleServiceClient(LfpSaleServiceSettings settings)
protected LfpSaleServiceClient(LfpSaleServiceSettings settings)
Constructs an instance of LfpSaleServiceClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
Parameter | |
---|---|
Name | Description |
settings |
LfpSaleServiceSettings |
LfpSaleServiceClient(LfpSaleServiceStub stub)
protected LfpSaleServiceClient(LfpSaleServiceStub stub)
Parameter | |
---|---|
Name | Description |
stub |
LfpSaleServiceStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Parameters | |
---|---|
Name | Description |
duration |
long |
unit |
TimeUnit |
Returns | |
---|---|
Type | Description |
boolean |
Exceptions | |
---|---|
Type | Description |
InterruptedException |
close()
public final void close()
getSettings()
public final LfpSaleServiceSettings getSettings()
Returns | |
---|---|
Type | Description |
LfpSaleServiceSettings |
getStub()
public LfpSaleServiceStub getStub()
Returns | |
---|---|
Type | Description |
LfpSaleServiceStub |
insertLfpSale(InsertLfpSaleRequest request)
public final LfpSale insertLfpSale(InsertLfpSaleRequest request)
Inserts a LfpSale
for the given merchant.
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 (LfpSaleServiceClient lfpSaleServiceClient = LfpSaleServiceClient.create()) {
InsertLfpSaleRequest request =
InsertLfpSaleRequest.newBuilder()
.setParent("parent-995424086")
.setLfpSale(LfpSale.newBuilder().build())
.build();
LfpSale response = lfpSaleServiceClient.insertLfpSale(request);
}
Parameter | |
---|---|
Name | Description |
request |
InsertLfpSaleRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
LfpSale |
insertLfpSaleCallable()
public final UnaryCallable<InsertLfpSaleRequest,LfpSale> insertLfpSaleCallable()
Inserts a LfpSale
for the given merchant.
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 (LfpSaleServiceClient lfpSaleServiceClient = LfpSaleServiceClient.create()) {
InsertLfpSaleRequest request =
InsertLfpSaleRequest.newBuilder()
.setParent("parent-995424086")
.setLfpSale(LfpSale.newBuilder().build())
.build();
ApiFuture<LfpSale> future = lfpSaleServiceClient.insertLfpSaleCallable().futureCall(request);
// Do something.
LfpSale response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<InsertLfpSaleRequest,LfpSale> |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
boolean |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()