Search in sources :

Example 16 with RequestConnect

use of com.fanap.podchat.requestobject.RequestConnect in project pod-chat-android-sdk by FanapSoft.

the class ChatActivity method connect.

private void connect() {
    if (serverType == ServerType.Main) {
        setMainServer();
    } else if (serverType == ServerType.Sandbox) {
        setSandBoxServer();
    } else if (serverType == ServerType.Integration) {
        setIntgrationServer();
    } else
        setMainServer();
    RequestConnect rc = new RequestConnect.Builder(socketAddress, APP_ID, serverName, TOKEN, ssoHost, platformHost, fileServer, podSpaceServer).build();
    presenter.connect(rc);
    tvServerType.setText(serverType.name());
}
Also used : RequestConnect(com.fanap.podchat.requestobject.RequestConnect)

Example 17 with RequestConnect

use of com.fanap.podchat.requestobject.RequestConnect in project pod-chat-android-sdk by FanapSoft.

the class IntegrationTest method createChat.

@Before
public void createChat() {
    Looper.prepare();
    view = Mockito.mock(ChatContract.view.class);
    chatActivity = chatActivityRule.getActivity();
    presenter = new ChatPresenter(appContext, view, chatActivity);
    RequestConnect rc = new RequestConnect.Builder(socketAddress, APP_ID, serverName, TOKEN, ssoHost, platformHost, fileServer, podSpaceServer).build();
    chatListeners = new ChatListener() {

        @Override
        public void onChatState(String state) {
            if (state.equals(CHAT_READY)) {
                resumeProcess();
            }
        }
    };
    chat.addListener(chatListeners);
    chat.connect(rc);
    chat.isCacheables(CACHE);
    pauseProcess();
}
Also used : ChatPresenter(com.example.chat.application.chatexample.ChatPresenter) RequestConnect(com.fanap.podchat.requestobject.RequestConnect) ChatListener(com.fanap.podchat.chat.ChatListener) Before(org.junit.Before)

Example 18 with RequestConnect

use of com.fanap.podchat.requestobject.RequestConnect in project pod-chat-android-sdk by FanapSoft.

the class HashTagCacheTest method createChat.

@Before
public void createChat() {
    view = Mockito.mock(ChatContract.view.class);
    chatActivity = chatActivityRule.getActivity();
    presenter = new ChatPresenter(appContext, view, chatActivity);
    RequestConnect rc = new RequestConnect.Builder(socketAddress, APP_ID, serverName, TOKEN, ssoHost, platformHost, fileServer, "podSpaceServer").build();
    chatListeners = new ChatListener() {

        @Override
        public void onChatState(String state) {
            if (state.equals(CHAT_READY)) {
                resumeProcess();
            }
        }
    };
    chat.addListener(chatListeners);
    chat.connect(rc);
    chat.isCacheables(CACHE);
    pauseProcess();
}
Also used : ChatPresenter(com.example.chat.application.chatexample.ChatPresenter) RequestConnect(com.fanap.podchat.requestobject.RequestConnect) ChatListener(com.fanap.podchat.chat.ChatListener) Before(org.junit.Before)

Aggregations

RequestConnect (com.fanap.podchat.requestobject.RequestConnect)18 ChatListener (com.fanap.podchat.chat.ChatListener)13 Before (org.junit.Before)13 ChatPresenter (com.example.chat.application.chatexample.ChatPresenter)11