转发查询请求给RoleId。 @param account 查询发起者,结果发送给他。 @param actionName 查询处理的实现 @param target 目标角色
(@NotNull String account, @NotNull String clientId, @NotNull String actionName, @NotNull String target, @NotNull String targetClientId, @Nullable Serializable parameter)
| 1334 | * @param target 目标角色 |
| 1335 | */ |
| 1336 | public void transmit(@NotNull String account, @NotNull String clientId, @NotNull String actionName, |
| 1337 | @NotNull String target, @NotNull String targetClientId, @Nullable Serializable parameter) { |
| 1338 | transmit(account, clientId, actionName, List.of(new BLoginKey(target, targetClientId)), parameter); |
| 1339 | } |
| 1340 | |
| 1341 | private void processTransmit(@NotNull String account, @NotNull String clientId, @NotNull String actionName, |
| 1342 | @NotNull Collection<BLoginKey> accounts, @Nullable Binary parameter) { |
no test coverage detected