Hi,
Supposing I have a background service, calling at intervals, and I want to toggle between calling service a) and service b) - one at a time every once in a while is fine.
The ideal might be to just swap out the service delegate, but that doesn't seem to be possible.
Another approach might be to pass values to the service delegate, but again, I can't see a way to do that. I haven't tried just setting globals yet, but that seems a bit wrong!
The third approach is to code the whole thing into one service delegate with all kinds of logic in the onTemporalEvent but that hardly seems like the right thing to do!
Am I missing something or am I attempting the impossible?
G