(@NotNull Binary fullEncodedProtocol)
| 871 | } |
| 872 | |
| 873 | private static long getTypeId(@NotNull Binary fullEncodedProtocol) { |
| 874 | int moduleId = ByteBuffer.ToInt(fullEncodedProtocol.bytesUnsafe(), 0); |
| 875 | int protocolId = ByteBuffer.ToInt(fullEncodedProtocol.bytesUnsafe(), 4); |
| 876 | return Protocol.makeTypeId(moduleId, protocolId); |
| 877 | } |
| 878 | |
| 879 | // 可在事务外执行 |
| 880 | public int sendDirect(@NotNull Set<BLoginKey> loginKeys, long typeId, @NotNull Binary fullEncodedProtocol, |
no test coverage detected