(@NotNull Binary fullEncodedProtocol)
| 1304 | } |
| 1305 | |
| 1306 | private static long getTypeId(@NotNull Binary fullEncodedProtocol) { |
| 1307 | int moduleId = ByteBuffer.ToInt(fullEncodedProtocol.bytesUnsafe(), 0); |
| 1308 | int protocolId = ByteBuffer.ToInt(fullEncodedProtocol.bytesUnsafe(), 4); |
| 1309 | return Protocol.makeTypeId(moduleId, protocolId); |
| 1310 | } |
| 1311 | |
| 1312 | // 可在事务外执行 |
| 1313 | public int sendDirect(@NotNull Iterable<Long> roleIds, long typeId, @NotNull Binary fullEncodedProtocol, |
no test coverage detected