I\'m writting a plug-in which defines a remote Service and provides a AIDL interface for 3rd party developers.
How can I use this remote service to deal with deffer
Not much different than writing a multi-threaded server. You keep thread local state for each client, and maybe give them some sort of session ID so you know who you are talking to.