Skip to content
#

coroutines

Here are 1,018 public repositories matching this topic...

aftabnaveed
aftabnaveed commented Jun 1, 2018

PHP Version 7.1.9

The documentation says that Swoole coroutine cannot be used with xdebug, while developling applications xdebug is very helpful tool. For smaller application it may not be a problem but larger applications makes it necessary to use it.

My question is how can I debug applications while still using Swoole Coroutines ?

kotlinx.coroutines
Foodium

🍲Foodium is a sample food blog Android application 📱 built to demonstrate use of Modern Android development tools - (Kotlin, Coroutines, Flow, Dagger 2, Architecture Components, MVVM, Room, Retrofit, Moshi, Material Components).

  • Updated Jun 19, 2020
  • Kotlin
jmfayard
jmfayard commented Oct 25, 2019

Hello,

you did the hard part of documenting which is writing the content.

I recommend as a next step to put all those markdown files in a website Gradle module powered by Orchid

See https://github.com/JavaEden/Orchid

I use it for my own needs and find it good, less well known that Hugo, Jekyll, Gatsby, but it fits right in with our skills: Gradle, Kotlin.

The way to get started is

IgorStauder
IgorStauder commented Nov 21, 2019

bug in README.md when_all_ready() example:

task<> example2()
{
...
// Unpack and handle each result individually once they're all complete.
for (int i = 0; i < 1000; ++i)
{
try
{
>>> std::string& record = tasks[i].result();
should be
std::string& record = resultTasks[i].result();
...
}

ktx
limbusdev
limbusdev commented Jan 24, 2019

Hi,
great extension to libGDX :) thank you for that.

My question: how can square brackets be used with libKTX ArrayMaps?

what I wanted to to:

val myMap : ArrayMap<String, Label>
myMap = ArrayMap()
myMap["one"] = new Label(...)

But there is no Set operator defined. Am I doing something wrong, or isn't it just implemented yet?

Cheers

Improve this page

Add a description, image, and links to the coroutines topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the coroutines topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.