mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-31 19:40:38 +00:00
Rename jsonrpc bulk to batch message
This commit is contained in:
parent
27a09fd408
commit
9c86baf0ea
5 changed files with 10 additions and 10 deletions
|
@ -16,7 +16,7 @@ public class JsonRpcSender {
|
|||
jsonWriter.write(request);
|
||||
}
|
||||
|
||||
public void sendBulkRequests(List<JsonRpcRequest> requests) {
|
||||
public void sendBatchRequests(List<JsonRpcRequest> requests) {
|
||||
jsonWriter.write(requests);
|
||||
}
|
||||
|
||||
|
@ -24,7 +24,7 @@ public class JsonRpcSender {
|
|||
jsonWriter.write(response);
|
||||
}
|
||||
|
||||
public void sendBulkResponses(List<JsonRpcResponse> responses) {
|
||||
public void sendBatchResponses(List<JsonRpcResponse> responses) {
|
||||
jsonWriter.write(responses);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue