IChatSession.aidl
上传用户:szyujian
上传日期:2016-09-20
资源大小:320k
文件大小:2k
源码类别:

android开发

开发平台:

C/C++

  1. /*
  2.  * Copyright (C) 2007-2008 Esmertec AG.
  3.  * Copyright (C) 2007-2008 The Android Open Source Project
  4.  *
  5.  * Licensed under the Apache License, Version 2.0 (the "License");
  6.  * you may not use this file except in compliance with the License.
  7.  * You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package com.android.im;
  18. import com.android.im.IChatListener;
  19. import com.android.im.engine.Message;
  20. interface IChatSession {
  21.     /**
  22.      * Registers a ChatListener with this ChatSession to listen to incoming
  23.      * message and participant change events.
  24.      */
  25.     void registerChatListener(IChatListener listener);
  26.     /**
  27.      * Unregisters the ChatListener so that it won't be notified again.
  28.      */
  29.     void unregisterChatListener(IChatListener listener);
  30.     /**
  31.      * Tells if this ChatSession is a group session.
  32.      */
  33.     boolean isGroupChatSession();
  34.     /**
  35.      * Gets the name of ChatSession.
  36.      */
  37.     String getName();
  38.     /**
  39.      * Gets the id of the ChatSession in content provider.
  40.      */
  41.     long getId();
  42.     /**
  43.      * Gets the participants of this ChatSession.
  44.      */
  45.     String[] getPariticipants();
  46.     /**
  47.      * Convert a single chat to a group chat. If the chat session is already a
  48.      * group chat or it's converting to group chat.
  49.      */
  50.     void convertToGroupChat();
  51.     /**
  52.      * Invites a contact to join this ChatSession. The user can only invite
  53.      * contacts to join this ChatSession if it's a group session. Nothing will
  54.      * happen if this is a simple one-to-one ChatSession.
  55.      */
  56.     void inviteContact(String contact);
  57.     /**
  58.      * Leaves this ChatSession.
  59.      */
  60.     void leave();
  61.     /**
  62.      * Sends a message to all participants in this ChatSession.
  63.      */
  64.     void sendMessage(String text);
  65. }