Official Murl Engine Forum

Full Version: IUrlRequest in MessageThread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it allowed to use urlRequest object in message thread?
It is required to check every frame url request status with WasFinished() or WasRejected().
How is it correct to use url request inside message thread?
(20 May 2019, 11:31)BregoXX Wrote: [ -> ]Is it allowed to use urlRequest object in message thread?
It is required to check every frame url request status with WasFinished() or WasRejected().
How is it correct to use url request inside message thread?

UrlRequest should be used from the logic thread. The medods WasFinished() and WasRejected() should be checked every tick in the OnProcessTick() or OnFinishTick() method of the logic processor.
(20 May 2019, 12:57)Ketschak Wrote: [ -> ]
(20 May 2019, 11:31)BregoXX Wrote: [ -> ]Is it allowed to use urlRequest object in message thread?
It is required to check every frame url request status with WasFinished() or WasRejected().
How is it correct to use url request inside message thread?

UrlRequest should be used from the logic thread. The medods WasFinished() and WasRejected() should be checked every tick in the OnProcessTick() or OnFinishTick() method of the logic processor.
Ok.thanks.