|
Platform SDK Java 8.5 API Reference | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Class Summary | |
---|---|
RequestJoin | Issues a request to create or join a chat session. |
RequestMessage | Issues a request to add a message to the specified chat session. |
RequestNotify | Issues a request to add a notice (that is, a notification) to the current chat session. |
RequestRegister | Issues a request to register with Chat Server. |
RequestReleaseParty | Issues a request to release one party from the chat session. |
This package contains the Request Object classes that your applications can use to work with chat interactions in Chat Server.
To use these classes, you will need to supply information about the objects you want to work with. For example, you need to specify a session ID, visibility setting, and MessageText object to create a new RequestMessage
, as shown below.
RequestJoin reqJoin = RequestJoin.create(strSessionId, Visibility.All,
MessageText.Create(strMessageText));
After the request is created, you can send it to the Chat Server using an existing BasicChatProtocol object.
For general information on the structure and usage of the Platform SDKs, please refer to the introductory articles located in the Platform SDK Developer's Guide.
|
Platform SDK Java 8.5 API Reference | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |