| Projects on Google Code | Results 1 - 10 of 63 |
Ender Lib creates an abstraction that emulates threads in Flex and Flash. While not physically possible to do in the Flash Player, much to our dismay, we can still roughly approximate them with a framework that provides yielding and scheduling.
In many cases, such as socket processing, events re...
Jetlang provides a high performance java threading library. The library is based upon [http://code.google.com/p/retlang Retlang].
The library is a complement to the [http://java.sun.com/javase/6/docs/api/java/util/concurrent/package-frame.html java.util.concurrent package] introduced in 1.5 and s...
Performing tasks in many threads made fun!
This module facilitates distributing simple operations into jobs that are sent to worker threads, maintained by a pool object.
It consists of these components:
# *Jobs*, which are single units of work that need to be performed.
# *Workers*, who gr...
= ThreadPool Component =
The ThreadPool is a component in which other components can get jobs executed.
The API has three important functions:
=== ThreadPool(max_workers=5, kill_workers_after=3) ===
Constructor function
* max_workers is the maximum number of threads used in/by the pool.
...
JsWorker is a small JavaScript library that wraps current implementations of worker thread in browsers. It contains three sub workers:
* [http://code.google.com/apis/gears/api_workerpool.html Google Gears WorkerPool]
* [http://www.whatwg.org/specs/web-workers/current-work/ Web Workers]
* Sim...
This is the host for project 1 - operating system class summer semester 2009.
Author: Anh Tuan Tran, Ruslán Ledesma Garza
Computer Science Department, Saarland University, Germany
Actors Guild is an experimental Java framework to make concurrent programming easier. It combines the concept of [http://en.wikipedia.org/wiki/Actor_model Actors] with [http://en.wikipedia.org/wiki/Futures_and_promises Futures]. The result is a small API that let's you write concurrent, multi-thread...
=Development of Generic Purposes Algorithms in Ada=
==Overview==
This project is intended to share and discuss generic Ada implementations. Ada is a very powerful language which is not yet well difused in open source community, but it can be very much useful in several areas such as real-time proc...
This project contains code that is featured on the [http://bitsofinfo.wordpress.com] blog.
*1) PseudoThread*
PseudoThread is a class which can give your Actionscript and Flex apps "thread-like" behavior. PseudoThread processes IRunnables which is where you implement the work you want done by ...
This project provides a pthread_atfork() work-a-like API for Python 2.4, 2.5 and 2.6 along with fixers to monkey patch standard library modules at run time to be safe in programs using both threading and forking.
While mixing threads and forking in a program is generally considered to be a bad id...