Coroutines are a general control structure whereby flow control is cooperatively passed between two different routines without returning.

learn more… | top users | synonyms

2
votes
2answers
51 views

Wait for the termination of n goroutines

I need to start a huge amount of goroutines and wait for their termination. The intuitive way seems to use a channel to wait till all of them are finished : package main type Object struct { ...
1
vote
2answers
65 views

How do I stop GameObjects from respawning at every frame?

I've come across this little issue which I can't seem to fully understand how to solve, I've tried changing my codes countless times but I haven't gotten anywhere :( I am creating game objects ...
0
votes
0answers
26 views

Coro Test::More

I have a working Coro program which I'm writing test scripts for This is a cut down version of how I'm trying to test use Test::More ;#tests => 9; BEGIN{ use_ok( 'EV' ) || print "Bail out!\n"; ...
0
votes
1answer
24 views

LINQ ToList() causes all records to be the last one off a coroutine

I seem to have an misunderstanding because the following code works correctly if I don't append the ToList() command: IEnumerable<ProcessorInfo> query = ( from n in ...
0
votes
0answers
20 views

Asynchronous execution traversal of an expression graph

In my application I have a graph of expressions/function nodes that I need to traverse once in all possible combinations. Since the execution of a particular node depends on the state of the execution ...
0
votes
3answers
77 views

C# Unity trying to figure out how to use Coroutine

I have the following code... StartCoroutine(GetSuggestions()); IEnumerator GetSuggestions() { longExecutionFunction(); // this takes a long time yield return null; } How can I use a ...
3
votes
1answer
164 views

Greenlet Vs. Threads

I am new to gevents and greenlets. I found some good documentation on how to work with them, but none gave me justification on how and when should I use greenlets ? What are they really good at ? ...
4
votes
3answers
96 views

Will a Python generator be garbage collected if it will not be used any more but hasn't reached StopIteration yet?

When a generator is not used any more, it should be garbage collected, right? I tried the following code but I am not sure which part I was wrong. import weakref import gc def countdown(n): ...
0
votes
1answer
45 views

What happens when a coroutine raises an exception?

I'm not sure what exactly happens in the following piece of code: def coroutine(): lst = [] try: while True: item = (yield lst) if item == 3: ...
1
vote
1answer
222 views

MovieTexture in Unity3D is never ready to play

I am using a Unity WWW object to load in a movie file that is in ogg theora format, but I am experiencing some strangeness that I have not been able to figure out how to resolve. For clarification, I ...
0
votes
0answers
78 views

problems with yield in unity

I have a function to make a simple menu animation in NGUI. It seems to work great, but when I go ingame and then return to menu, the function is not working properly. IEnumerator MenuTransition ...
1
vote
2answers
512 views

Unity Performance - Coroutines vs FSM on update

I just started studying Unity scripting and I'm having a hard time to understand why some people prefer coroutines over state machines. I do understand that the code might be more readable for some ...
2
votes
1answer
103 views

attempt to index local 'self' using MOAICoroutine in Lua

I am just starting with MOAI and I am trying to create a traditional game loop using MOAICoroutine. The problem is that when I pass it the function that is part of a "class" that is built using 30log, ...
1
vote
1answer
61 views

'finally' actions for coroutines

Imagine I have a coroutine which uses the implementation of Loader included in the CM docs, and I use it to show a busy indicator on my page Now imagine the user attempts to add an object which ...
0
votes
2answers
88 views

The stack of a lua coroutine is entered implicitly without a call to resume?

I am using lua coroutines (lua 5.1) to create a plugin system for an application. I was hoping to use coroutines so that the plugin could operate as if it were a separate application program which ...
0
votes
0answers
59 views

Haw I can to use the nonblocking i/o for MySQL in C-connector

The mysql C-connector use the nonblocking i/o (See src). The executing MySQL query have some time. I could be to processing any work for my server in other thread or coroutine when executing the query ...
3
votes
1answer
92 views

A core-dump when using lua_yield and lua_resume

I just want to resume the func coroutine twice, yield if n==0, and return if n==1 , but it core dumps, what't wrong with it? the "hello world" should always be left in LL's stack, I can't figure out ...
2
votes
3answers
273 views

How to run blocking operation in Corona SDK Lua?

I'm new to LUA and I'm writing a tcp messaging library in LUA using Corona SDK. I stuck with a problem that socket reading operation hangs application UI even if it is run in coroutine. How I start ...
1
vote
3answers
169 views

Client Side Implementation of Fibers in JavaScript.

AFAIK meteorjs uses node-fibers, but their github page states that it is server side & v8 only (or is it not ?). How does meteorjs implement nonblocking, synchronous like api on the client side? ...
0
votes
1answer
63 views

How to go about improving this coroutine

I have this co-routine, which is designed to accept data, and then send the data on to next co-routine in a chain, but in blocks of length blocksize. Due to strings being immutable I think the string ...
0
votes
1answer
56 views

JS lengthy computation: split it up with a good syntax?

My JS code takes a long time to run so it locks up the browser. I could split it up with setTimeout, that would work. But then I need to restructure my code. It should be possible without ...
2
votes
2answers
69 views

sending and receiving values on the same generator

I am trying to understand some of the subtle details of python generators. One of the test programs I wrote to see if I could both send and read alternatively values to/from the same generator is the ...
5
votes
2answers
230 views

Lua: lua_resume and lua_yield argument purposes

What is the purpose of passing arguments to lua_resume and lua_yield? I understand that on the first call to lua_resume the arguments are passed to the lua function that is being resumed. This makes ...
0
votes
2answers
231 views

Python loop in a coroutine [closed]

I've read all the documentation on the subject, but it seems I can't grasp the whole concept of Python coroutines well enough to implement what I want to do. I have a background task (which generates ...
3
votes
1answer
91 views

Scheme: how does a nested call/cc work for a coroutine?

I am looking at the following example for a coroutine from http://community.schemewiki.org/?call-with-current-continuation: (define (hefty-computation do-other-stuff) (let loop ((n 5)) ...
3
votes
2answers
255 views

How do I deal with Lua libraries that don't coroutine.yield()?

I want to download a large file and concurrently handle other things. However, luasocket.http never calls coroutine.yield(). Everything else freezes while the file downloads. Here's an illustrative ...
1
vote
1answer
191 views

Making an asynchronous call synchronous in tornado

I have the following problem. I work on a tornado based application server. Most of the code can be synchronous and the web interface does not really use any of the asynchronous facilities of ...
3
votes
2answers
250 views

How to implement Coroutines on iOS

I am porting a C++ project to iOS for use on iPhone and iPad. This project uses the Boost.Coroutine library extensively. Boost.Coroutine does not have an implementation for the iPhone's ARMv6/ARMv7 ...
1
vote
1answer
127 views

Performance characteristics of pthreads vs ucontext

I'm trying to port a library that uses ucontext over to a platform which supports pthreads but not ucontext. The code is pretty well written so it should be relatively easy to replace all the calls ...
1
vote
2answers
94 views

Python: I don't understand what's happening with this generator

I'm curious as to what's happening here. Can someone who knows generators and coroutines well explain this code. def b(): for i in range(5): yield i x = (yield) print(x) ...
4
votes
2answers
368 views

Coroutines in php?

Hi I'm looking for a way to implement a coroutine in a php file. The idea is that I have long processes that need to be able to yield for potentially hours or days. So other php files will be ...
8
votes
1answer
2k views

How does StartCoroutine / yield return pattern really work in Unity?

I'm new to Unity and C#. I understand the principle of coroutines (mainly from iterators in Python). I can also get the standard StartCoroutine / yield return pattern to work in C# in Unity, e.g. ...
1
vote
0answers
57 views

Is it possible to save and restore libtask coroutines?

I want to be able to suspend libtask coroutines to disk and then restore them again under a different process so they can continue where they left off.
1
vote
1answer
70 views

Do other languages have an equivalent to Python's Gevent?

I was looking into options for writing a high throughput router that can handle and route a lot of traffic with a lot of connections, and I came across these benchmarks for options in python. Gevent ...
0
votes
1answer
106 views

caliburn micro send data to the dialog

and sorry for the noobness, i'm fairly new to the framework, but i'm beginning to understand it and it's inner workings. simply put what i want is this: the shellview recieves an event, from ...
4
votes
1answer
162 views

Using a Goroutine actually takes longer to execute

I'm sure that I'm doing something wrong, I have a Go program that parses in 3D models in OBJ format and outputs a json object. When I run it without adding in goroutines I get the following output: ...
2
votes
2answers
149 views

wxLua - How do I implement a Cancel button?

I have a wxLua Gui app that has a "Run" button. Depending on selected options, Run can take a long time, so I would like to implement a "Cancel" button/feature. But it looks like everything in wxLua ...
2
votes
2answers
109 views

In an environment with multiple coroutines, is it sane to implement priorities? [closed]

I'm reading some Lua books and I'm thinking of migrating some legacy (and badly written) C code to a mix of Lua and C. However, this legacy code uses threads to handle some critical tasks (basically ...
0
votes
1answer
87 views

how to implement coroutine lock in tornado

i understand the mechanism of corountine in Tornado ,but here is the problem i couldn't figure out,please give me a hand consider this business routine : here are 5 database operations #operation 1 ...
17
votes
3answers
490 views

Coroutines or continuations for Web programming in Python and Ruby. Why not? [closed]

The question is: why aren't continuations (in Ruby) and coroutines (in Python) more widely used for Web programming? Server-side web programming is made difficult by the problem of preserving state ...
0
votes
1answer
109 views

Is it possible to expose (from C++) the “same” constant with different values to multiple Lua coroutines?

I am writing a library called LuaVM to manage the interaction between Lua Scripts and my own project using the Lua library. I am searching a way to expose somewhat "local" coroutine variables. So I ...
0
votes
3answers
783 views

Can I execute operations async only with help of Coroutines in Caliburn Micro?

From the documentation I've realized that I can use Caliburn Micro's coroutines for async operations. Out of the box and without extra technologies. So I've implemented the next code in my Windows ...
8
votes
3answers
279 views

“yield” keyword for C++, How to Return an Iterator from my Function?

Consider the following code. std::vector<result_data> do_processing() { pqxx::result input_data = get_data_from_database(); return process_data(input_data); } ...
1
vote
1answer
273 views

Is yield-based coroutine is REAL coroutine?

I was implementing greenlet API just for practicing. from greenlet import greenlet def test1(): print 12 gr2.switch() print 34 def test2(): print 56 gr1.switch() print 78 ...
2
votes
2answers
105 views

strange behavior of Coroutine

I'm learning about Coroutine but it work strange that I can't understand... Here's the source @coroutine def printer(): tmp=(yield) print tmp def sender(coru): coru.send("hello") ...
2
votes
2answers
306 views

Threads, Coro, Anyevent confusion

I am relatively new to perl and even newer to threading in perl. I have a perl script that takes input from 3 different sources. (2 LDAP queries and a file that isn't always there) Because some parts ...
2
votes
1answer
378 views

Consuming a per session WCF service in a WPF application

I'm not really sure how to handle the scenario I have in a good code manner. The basic of the criteria of my work is this: A WPF application that consumes a WCF service The service uses per session ...
2
votes
1answer
284 views

What's the proper way to use coroutines for event handling?

I'm trying to figure out how to handle events using coroutines (in Lua). I see that a common way of doing it seems to be creating wrapper functions that yield the current coroutine and then resume it ...
0
votes
2answers
391 views

Coroutines, multiple requests in Lua

I've been poring over this subject for the past 12 hours, and I simply cannot seem to get anywhere. I do not even know if this is possible, but I'm hoping it is because it would go a long way to ...
8
votes
1answer
340 views

Alternative way to threads under Android

Android's Java and Oracle's Java are slightly different. Is it possible to use the following actors or coroutines http://code.google.com/p/jetlang/ http://incubator.apache.org/s4/ ...

1 2 3 4