mirror of https://github.com/kivy/kivy.git
Updated Using Asynchronous programming inside a Kivy application (markdown)
parent
1605a04f96
commit
4ff7f97374
|
@ -7,6 +7,8 @@ Using an async style of programming is much easier to reason about than using th
|
|||
|
||||
The async landscape for kivy is a bit lacking. The best option has been explained [here.](https://github.com/kivy/kivy/issues/4799#event-897592498) Compare [Working with threads in kivy](https://github.com/kivy/kivy/wiki/Working-with-Python-threads-inside-a-Kivy-application). While the complexity of the thread looks manageable, Sooner or later you will be bitten with buggy non deterministic behaviour and or deadlocks.
|
||||
|
||||
** Warning: When using the async model with kivy, certain errors will crash kivy without a traceback. This is rather annoying and means you have to step through the code in a debugger (the exception will be raised in this case).
|
||||
|
||||
## Usage
|
||||
|
||||
```python
|
||||
|
|
Loading…
Reference in New Issue