Method
pong
(Client client, Object message)
Source from the content-addressed store, hash-verified
| 1905 | } |
| 1906 | |
| 1907 | public java.util.concurrent.CompletableFuture<Object> pong(Client client, Object message) |
| 1908 | { |
| 1909 | |
| 1910 | return java.util.concurrent.CompletableFuture.supplyAsync(() -> { |
| 1911 | |
| 1912 | (client.send(new java.util.HashMap<String, Object>() {{ |
| 1913 | put( "event", "pong" ); |
| 1914 | }})).join(); |
| 1915 | return null; |
| 1916 | }); |
| 1917 | |
| 1918 | } |
| 1919 | |
| 1920 | public void handlePing(Client client, Object message) |
| 1921 | { |
Tested by
no test coverage detected