(@NotNull String account, @NotNull String clientId, @NotNull Protocol<?> p)
| 1075 | } |
| 1076 | |
| 1077 | public void sendWhileCommit(@NotNull String account, @NotNull String clientId, @NotNull Protocol<?> p) { |
| 1078 | Transaction.whileCommit(() -> send(account, clientId, p)); |
| 1079 | } |
| 1080 | |
| 1081 | public void sendWhileCommit(@NotNull Collection<BLoginKey> logins, @NotNull Protocol<?> p) { |
| 1082 | Transaction.whileCommit(() -> send(logins, p)); |
nothing calls this directly
no test coverage detected