ServiceRemotingClient Interface
public interface ServiceRemotingClient extends CommunicationClient
Defines the interface that must be implemented to provide a client for Service Remoting communication.
Method Summary
Modifier and Type | Method and Description |
---|---|
CompletableFuture<byte[]> |
requestResponseAsync(ServiceRemotingMessageHeaders messageHeaders, byte[] requestBody)
Sends a message to the service and gets a response back. |
void |
sendOneWay(ServiceRemotingMessageHeaders messageHeaders, byte[] requestBody)
Sends a one-way message to the service |
Inherited Members
CommunicationClient.getEndPoint()
CommunicationClient.getListenerName()
CommunicationClient.getResolvedServicePartition()
CommunicationClient.setEndPoint(ResolvedServiceEndpoint endPoint)
CommunicationClient.setListenerName(String listenerName)
CommunicationClient.setResolvedServicePartition(ResolvedServicePartition servicePartition)
Method Details
requestResponseAsync
public CompletableFuture
Sends a message to the service and gets a response back.
Parameters:
messageHeaders
- Message headers
requestBody
- Message body
Returns:
Response body
sendOneWay
public void sendOneWay(ServiceRemotingMessageHeaders messageHeaders, byte[] requestBody)
Sends a one-way message to the service
Parameters:
messageHeaders
- Message headers
requestBody
- Message body
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Java