I have simple question. Of course before i asked here , i asked Google, but unfortunately i didn’t get the answer i want.
I just want to know simple question. What is client code in java (android)?
When i asked google, it gave me results about client/network server. I think in this case a client is a program running on my/your computer, and network is a server communicating with client?
I want to know what is a client code in Java? Like in this context: ( Copied from android developers site )
There are two reasons that a service can be run by the system. If someone calls Context.startService() then the system will retrieve the service (creating it and calling its onCreate() method if needed) and then call its onStartCommand(Intent, int, int) method with the arguments supplied by the client.
Is in this case client code like Activity code ..or?
In this context, client means client of the API, which is simply the caller of the given methods or user of the given classes.