Http Utilities

CharlesIPTI

Active Member
Licensed User
Longtime User
B4X:
Sub internalCheckIfCanStart(JobName As String) As Boolean
   If Working Then
      Log("Already working. Request ignored (" & JobName & ")")
      Return False
   End If

When This block is hit,, does it EVER go back and really do the requested work or are you just screwed ?
 

Kevin

Well-Known Member
Licensed User
Longtime User
I'm not 100% sure, but unless Erel added in some kind of behind the scenes buffering of requests to start HTTP Utils "jobs" then I'd say you would need to check for this happening and try again later yourself. Or find a way to buffer the job requests yourself if it cannot start due to being busy already.
 
Upvote 0
Top