We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While using Appier it's important to keep in mind that many features of it use the concept of global variable to simplify the usage process.
These same global variables may created weird runtime issues while running the App, mainly while running multiple Apps in the same process.
To avoid some of thoses issues a per-thread association should be created between an App and the thread where it's container (web server) is running.
The start() and stop() method of an app are called "inside" the web server container and should be used for this kind of registration.
start()
stop()
The text was updated successfully, but these errors were encountered:
joamag
No branches or pull requests
Description
While using Appier it's important to keep in mind that many features of it use the concept of global variable to simplify the usage process.
These same global variables may created weird runtime issues while running the App, mainly while running multiple Apps in the same process.
To avoid some of thoses issues a per-thread association should be created between an App and the thread where it's container (web server) is running.
Solutions
The
start()
andstop()
method of an app are called "inside" the web server container and should be used for this kind of registration.The text was updated successfully, but these errors were encountered: