资源简介
aidl 方式client端和服务端方式通信的例子
代码片段和文件信息
/*
* This file is auto-generated. DO NOT MODIFY.
* Original file: /home/songhanqing/workspace/aidlexample/src/com/aidl/aidlservice/example.aidl
*/
package com.aidl.aidlservice;
public interface example extends android.os.IInterface
{
/** Local-side IPC implementation stub class. */
public static abstract class Stub extends android.os.Binder implements com.aidl.aidlservice.example
{
private static final java.lang.String DEscriptOR = “com.aidl.aidlservice.example“;
/** Construct the stub at attach it to the interface. */
public Stub()
{
this.attachInterface(this DEscriptOR);
}
/**
* Cast an IBinder object into an com.aidl.aidlservice.example interface
* generating a proxy if needed.
*/
public static com.aidl.aidlservice.example asInterface(android.os.IBinder obj)
{
if ((obj==null)) {
return null;
}
android.os.IInterface iin = obj.queryLocalInterface(DEscriptOR);
if (((iin!=null)&&(iin instanceof com.aidl.aidlservice.example))) {
return ((com.aidl.aidlservice.example)iin);
}
return new com.aidl.aidlservice.example.Stub.Proxy(obj);
}
@Override public android.os.IBinder asBinder()
{
return this;
}
@Override public boolean onTransact(int code android.os.Parcel data android.os.Parcel reply int flags) throws android.os.RemoteException
{
switch (code)
{
case INTERFACE_TRANSACTION:
{
reply.writeString(DEscriptOR);
return true;
}
case TRANSACTION_add:
{
data.enforceInterface(DEscriptOR);
int _arg0;
_arg0 = data.readInt();
int _arg1;
_arg1 = data.readInt();
int _result = this.add(_arg0 _arg1);
reply.writeNoException();
reply.writeInt(_result);
return true;
}
}
return super.onTransact(code data reply flags);
}
private static class Proxy implements com.aidl.aidlservice.example
{
private android.os.IBinder mRemote;
Proxy(android.os.IBinder remote)
{
mRemote = remote;
}
@Override public android.os.IBinder asBinder()
{
return mRemote;
}
public java.lang.String getInterfaceDescriptor()
{
return DEscriptOR;
}
@Override public int add(int a int b) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
int _result;
try {
_data.writeInterfaceToken(DEscriptOR);
_data.writeInt(a);
_data.writeInt(b);
mRemote.transact(Stub.TRANSACTION_add _data _reply 0);
_reply.readException();
_result = _reply.readInt();
}
finally {
_reply.recycle();
_data.recycle();
}
return _result;
}
}
static final int TRANSACTION_add = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
}
public int add(int a int b) throws android.os.RemoteException;
}
相关资源
- webservice方式系统更新程序
- myServiceDemo
- win7SP1旗舰版32位和64位原版themeservic
- Web服务
- 网上书店基于dao service sevlet
- Eclipes+Juno+Service+Release+2汉化包
- axis1实现webservice 及客户端调用方法
- AlarmManagerDemo(含 广播 service activit
- Service Mesh:下一代微服务
- google-play-services_lib
- 聚合客服万能客服cy163_customerservice
- RCC.71-v2.4.pdf RCS Universal Profile Service
- DataService安装配置手册
- VpnServiceDemo.zip
- TcpMonitor
- mule学习demo包含webservice调用参数转换
- H13-811 HCIA Cloud Service v2 最新题库1
- Reporting Service 父子下拉树型菜单父子
- 西北工业大学软件工程WebServices实验报
- LinuxIC v21
- System_Service_User_Manual_V3.4.pdf
- 集中式MAS服务平台WebService-短信接口开
- WebApi寄宿到控制台的一个程序
- AppToService AppToserver
- ServiceNow-Data-Model-v3.4 ServiceNow 数据模型
- Building.Microservices
- 基于webservice的预约系统
- cat4500e-entservicesk9-mz.122-54.SG1.bin
- HCNA Cloud Service 培训资料,H13-811题库,
- cxf集成Spring的restful WebService接口以J
评论
共有 条评论