Interface AddressValidationGrpc.AsyncService
-
- All Known Implementing Classes:
AddressValidationGrpc.AddressValidationImplBase
- Enclosing class:
- AddressValidationGrpc
public static interface AddressValidationGrpc.AsyncService
The service for validating addresses.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
provideValidationFeedback(ProvideValidationFeedbackRequest request, io.grpc.stub.StreamObserver<ProvideValidationFeedbackResponse> responseObserver)
Feedback about the outcome of the sequence of validation attempts.default void
validateAddress(ValidateAddressRequest request, io.grpc.stub.StreamObserver<ValidateAddressResponse> responseObserver)
Validates an address.
-
-
-
Method Detail
-
validateAddress
default void validateAddress(ValidateAddressRequest request, io.grpc.stub.StreamObserver<ValidateAddressResponse> responseObserver)
Validates an address.
-
provideValidationFeedback
default void provideValidationFeedback(ProvideValidationFeedbackRequest request, io.grpc.stub.StreamObserver<ProvideValidationFeedbackResponse> responseObserver)
Feedback about the outcome of the sequence of validation attempts. This should be the last call made after a sequence of validation calls for the same address, and should be called once the transaction is concluded. This should only be sent once for the sequence of `ValidateAddress` requests needed to validate an address fully.
-
-