B4J Tutorial [server] Background Workers - Erel    Nov 20, 2016   (19 reactions)   tags: Server, B4J Server, background, B4j jServer v2.70 adds support for background workers (https://www.b4x.com/android/forum/threads/updates-to-internal-libaries.48274/#post-465493).
A background worker is a class instance... B4J Tutorial [BANano] (v7) Using Background Workers in your WebApps (introduction) - alwaysbusy    Mar 3, 2023   (6 reactions) The next release of BANano will have the possibility to use background workers in your WebApps. It can not be added in a BANanoLibrary, so it must be done in your final project. Background workers... B4J Tutorial [BANano] Lessons I learned from building a Background Worker in a BANanoServer Project - Mashiane    Apr 11, 2025   (1 reaction) Hi Fam
V7 of BANano came with background workers. I tested this and I was happy recently to... them.
Lesson 3: The process flow of the Background Worker.
3.1 Add the background worker in Main > App Start before building your app.
Server.BANano.AddBackgroundWorker("worker", "BROWSERGreenAPIWorker28")
3.2 Start the Background Worker in BROWSERAPP. Initialize and no... B4J Tutorial [Web][SithasoDaisy] Exploring Web Service Workers aka BANano Background Workers - Mashiane    Oct 22, 2023   (2 reactions) Good day.. Here we go.. 5EnZ7GTQ38A Demo On Vercel Source Code Have Fun!... B4J Question [BANano] MessageFromBackgroundWorker Issue - Mashiane    Mar 30, 2025 Hi
I am trying to have a Background Worker working in a BANanoServer app. Im trying to execute... this and added a background worker.
163063
Thank you in advance.
PS: Similar implementation on my app....
_banano_bmw_browserwebworker.worker.handler.banano_messagefrombackgroundworker('worker', event.data.tag, event... B4J Question [BANano] How to use a normal class inside Background Worker - Mashiane    Oct 22, 2023 Hi I have defined a class that uses BANano.Await internally and have defined it in the worker as I intend using it there.. Here is the worker code.. Sub Class_Globals Private BANano As BANano 'ignore Private eSqlite As SithasoSQLiteEmbedded End Sub I Intend to call a sub that will use the class Sub OpenSQLite(fileName As String) Log($"OpenSQLite:${fileName}"$) eSqlite.Initialize(Me, "sqlite", fileName) BANano.Await(eSqlite.OpenDatabase) End Sub... B4J Question hot get BackgroundWorker from Main.bas - jinyistudio    Nov 12, 2017   tags: BackgroundWorker, B4J Calling Classes Modul Hi
I have add some BackgroundWorker as following, Could i get gate4dimmer and call their sub with callsub ? :)
srvr.AddBackgroundWorker("gate4dimmer")
srvr.AddBackgroundWorker("gate4mbtcp")
srvr.AddBackgroundWorker("gate4mbrtu")
srvr.AddBackgroundWorker("gate4slmp")
'
srvr.Start... B4J Question [SOLVED] Background Workers : passing parameters ? - lemonisdead    Jun 21, 2017 Hello,
Something I don't understand with Background Workers is their use (apart from doing... a separate sub, as an initialization parameter but they seem not to be got.
Only when the Background Worker... B4J Library BackgroundWorkerClass - XbNnX_507    Aug 6, 2023   (3 reactions) Hello EveryOne, This is the BackgroundWorker but without all the bells and whistles of JServer. ?... Wish [RESOLVED] JServer that only does background workers, no HTTP interface - Jmu5667    Dec 13, 2021 EDIT: https://www.b4x.com/android/forum/threads/abbackgroundworkers-extracted-from-jserver.134061/#content Hello Beacuse of the nature of work our company does, there are times when we need to build a server app that needs the support of background worker threads, but not the the HTTP part of the server. It would be a great addition, I believe, as others have mentioned it before. In a non UI app having a class with a timer in it does not really cut it for us, as it runs on the main thread... Page: 1   2   3   4   5   6   7   |