(Runnable runnable)
| 73 | } |
| 74 | |
| 75 | private boolean submit(Runnable runnable) { |
| 76 | try { |
| 77 | if (destroyed) return false; |
| 78 | if (executor.isShutdown()) return false; |
| 79 | executor.submit(runnable); |
| 80 | return true; |
| 81 | } catch (Throwable ignored) { |
| 82 | return false; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | @Keep |
| 87 | @JSMethod |
no outgoing calls
no test coverage detected