lizhanwei
2020-02-17 ee16db5e1cbc1c27bdbc1984567b5e61a3d005dd
app/src/main/java/safeluck/drive/evaluation/im/MessageProcessor.java
@@ -2,9 +2,12 @@
import android.util.Log;
import com.anyun.exam.lib.MyLog;
import com.anyun.im_lib.util.ByteUtil;
import safeluck.drive.evaluation.platformMessage.PlatFormConstant;
import safeluck.drive.evaluation.platformMessage.RegisterResp;
import safeluck.drive.evaluation.platformMessage.ServerCommonRsp;
import safeluck.drive.evaluation.util.CThreadPoolExecutor;
import safeluck.drive.evaluation.util.Utils;
@@ -49,6 +52,13 @@
            case (short) 0x8100:
                RegisterResp registerResp = new RegisterResp(datas);
                break;
            case (short) 0x8001://服务器端 通用应答
                ServerCommonRsp serverCommonRsp = new ServerCommonRsp(datas);
                if (serverCommonRsp.getResult() == PlatFormConstant.SUCCESS){
                    MyLog.i(PlatFormConstant.TAG,"确认"+serverCommonRsp.getMsgId()+"消息成功");
                }
                break;
        }
    }