-
- All Implemented Interfaces:
-
java.io.Serializable
,java.lang.Comparable
public enum SendBird.Options.ThreadOption
ThreadOption
determines howSendBird
will manage or create threads when callbacks or events are called.Refer to setThreadOption.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UI_THREAD
All callbacks or events will be called in the default Android UI thread.
NEW_THREAD
All callbacks or events will be asynchronously called in new threads.
HANDLER
All callbacks or events will be called in the Android
Handler
object, which is provided as a parameter.
-
Method Summary
Modifier and Type Method Description static Array<SendBird.Options.ThreadOption>
values()
static SendBird.Options.ThreadOption
valueOf(String name)
-
-
Method Detail
-
values
static Array<SendBird.Options.ThreadOption> values()
-
valueOf
static SendBird.Options.ThreadOption valueOf(String name)
-
-
-
-