(Object tag)
| 445 | } |
| 446 | |
| 447 | public Stream<Fiber> findByTag(Object tag) { |
| 448 | return live.stream() |
| 449 | .filter(x -> Util.safeEq(x, tag)); |
| 450 | } |
| 451 | |
| 452 | public static void inMainThread(Runnable o) throws InterruptedException, ExecutionException { |
| 453 | if (!enabled || fiber.get() == null) |