Back to project page android-sqlite-server.
The source code is released under:
Apache License
If you think the Android project android-sqlite-server listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.devtcg.sqliteserver.impl.binder; // w w w . j a v a 2 s.co m import android.os.Bundle; public interface ClientTransactor { /** * Get the client's binder handle. This uniquely identifies this client connection to the * server and must not change after the connection is made. */ public BinderHandle getClientHandle(); /** * Execute a client request (submit it to our server peer). */ public Bundle transact(Bundle request); }