Android Question JobDone without notification

Shay

Well-Known Member
Licensed User
Longtime User
Hi

Using :
job.Initialize(JobName, Me)

I don't want to use:
Sub JobDone(Job As HttpJob)

I wish to send something to internet without getting response (I don't care of it)
Or at least do not open "Me"
(I know I can run activity.finish, but it gives some "blink" of window opens and the close)
How can I avoid it?
 

Shay

Well-Known Member
Licensed User
Longtime User
So you mean I will use service that will run in background all the time and there I will post, and get the response

how can I remote call (from module) specific sub inside service? (I don't want to stop and start the service all the time)
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
I wish to send something to internet without getting response (I don't care of it)

The send out the job and use a blank sub_done to ignore the result. Where is the problem?
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Top