Pings the currently active SeedQueueThread.
()
| 443 | * Pings the currently active {@link SeedQueueThread}. |
| 444 | */ |
| 445 | public static void ping() { |
| 446 | SeedQueueThread thread = SeedQueue.thread; |
| 447 | if (thread != null) { |
| 448 | thread.ping(); |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * @return A mutable copy of the queue. |
no test coverage detected