Uses of Class
com.neovisionaries.ws.client.ThreadType
-
-
Uses of ThreadType in com.neovisionaries.ws.client
Fields in com.neovisionaries.ws.client declared as ThreadType Modifier and Type Field Description private ThreadTypeWebSocketThread. mThreadTypeMethods in com.neovisionaries.ws.client that return ThreadType Modifier and Type Method Description static ThreadTypeThreadType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ThreadType[]ThreadType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.neovisionaries.ws.client with parameters of type ThreadType Modifier and Type Method Description voidListenerManager. callOnThreadCreated(ThreadType threadType, java.lang.Thread thread)voidListenerManager. callOnThreadStarted(ThreadType threadType, java.lang.Thread thread)voidListenerManager. callOnThreadStopping(ThreadType threadType, java.lang.Thread thread)voidWebSocketAdapter. onThreadCreated(WebSocket websocket, ThreadType threadType, java.lang.Thread thread)voidWebSocketListener. onThreadCreated(WebSocket websocket, ThreadType threadType, java.lang.Thread thread)Called between after a thread is created and before the thread'sstart()method is called.voidWebSocketAdapter. onThreadStarted(WebSocket websocket, ThreadType threadType, java.lang.Thread thread)voidWebSocketListener. onThreadStarted(WebSocket websocket, ThreadType threadType, java.lang.Thread thread)Called at the very beginning of the thread'srun()method implementation.voidWebSocketAdapter. onThreadStopping(WebSocket websocket, ThreadType threadType, java.lang.Thread thread)voidWebSocketListener. onThreadStopping(WebSocket websocket, ThreadType threadType, java.lang.Thread thread)Called at the very end of the thread'srun()method implementation.Constructors in com.neovisionaries.ws.client with parameters of type ThreadType Constructor Description WebSocketThread(java.lang.String name, WebSocket ws, ThreadType type)
-