(long sender, @NotNull String actionName, @NotNull Iterable<Long> roleIds, @Nullable Binary parameter)
| 1578 | } |
| 1579 | |
| 1580 | public void processTransmit(long sender, @NotNull String actionName, @NotNull Iterable<Long> roleIds, |
| 1581 | @Nullable Binary parameter) { |
| 1582 | var handle = transmitActions.get(actionName); |
| 1583 | if (handle != null) { |
| 1584 | for (var target : roleIds) { |
| 1585 | Task.call(providerApp.zeze.newProcedure(() -> handle.call(sender, target, parameter), |
| 1586 | "Online.transmit: " + actionName)); |
| 1587 | } |
| 1588 | } |
| 1589 | } |
| 1590 | |
| 1591 | public static final class RoleOnServer { |
| 1592 | int serverId = -1; // providerId |
no test coverage detected