(BValue value)
| 165 | |
| 166 | public static class Bytes8 implements Job { |
| 167 | @Override |
| 168 | public void run(BValue value) { |
| 169 | var bytes = new byte[8]; |
| 170 | getRandom().nextBytes(bytes); |
| 171 | value.setBytes8(new Binary(bytes)); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | public static class List9 implements Job { |