Rename jsonrpc bulk to batch message

This commit is contained in:
AsamK 2021-11-09 14:22:35 +01:00
parent 27a09fd408
commit 9c86baf0ea
5 changed files with 10 additions and 10 deletions

View file

@ -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);
}
}