Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/puniverse/quasar
Fibers, Channels and Actors for the JVM
https://github.com/puniverse/quasar
actors concurrency fibers java jvm
Last synced: 1 day ago
JSON representation
Fibers, Channels and Actors for the JVM
- Host: GitHub
- URL: https://github.com/puniverse/quasar
- Owner: puniverse
- License: other
- Created: 2013-03-27T14:51:24.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-01-21T07:18:32.000Z (11 months ago)
- Last Synced: 2024-12-03T15:08:43.661Z (9 days ago)
- Topics: actors, concurrency, fibers, java, jvm
- Language: Java
- Homepage: http://docs.paralleluniverse.co/quasar/
- Size: 76.9 MB
- Stars: 4,564
- Watchers: 281
- Forks: 572
- Open Issues: 101
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: COPYING
Awesome Lists containing this project
- my-awesome - puniverse/quasar - 01 star:4.6k fork:0.6k Fibers, Channels and Actors for the JVM (Java)
- awesome-ccamel - puniverse/quasar - Fibers, Channels and Actors for the JVM (Java)
- awesome-actor - Quasar - Fibers, Channels and Actors for the JVM. [docs](http://docs.paralleluniverse.co/quasar/) (Frameworks, Libraries and Tools / Application Frameworks)
- useful-java-links - Puniverse Quasar - java-links/tree/master/helloworlds/1.1-common-frameworks-and-lib/quasar). License: Eclipse Public v1.0/[GNU Lesser 3](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License), [![GitHub stars](https://img.shields.io/github/stars/puniverse/quasar.svg?style=social&label=Star&maxAge=2592000)](https://github.com/puniverse/quasar). ![business friendly license](https://github.com/Vedenin/useful-java-links/blob/master/img/business-friendly.png?raw=true) (I. Development / 1. Common frameworks and libraries)
README
# *Quasar*
Fibers, Channels and Actors for the JVM
[![Build Status](https://travis-ci.org/puniverse/quasar.svg?branch=master)](https://travis-ci.org/puniverse/quasar) [![Version](http://img.shields.io/badge/version-0.8.0-blue.svg?style=flat)](https://github.com/puniverse/quasar/releases) [![License](http://img.shields.io/badge/license-EPL-blue.svg?style=flat)](https://www.eclipse.org/legal/epl-v10.html) [![License](http://img.shields.io/badge/license-LGPL-blue.svg?style=flat)](https://www.gnu.org/licenses/lgpl.html)## Getting started
Add the following Maven/Gradle dependencies:
| Feature | Artifact
|------------------|------------------
| Core (required) | `co.paralleluniverse:quasar-core:0.8.0`
| Actors | `co.paralleluniverse:quasar-actors:0.8.0`
| Reactive Streams | `co.paralleluniverse:quasar-reactive-streams:0.8.0`
| Disruptor Channels| `co.paralleluniverse:quasar-disruptor:0.8.0`
| Kotlin (JDK8+) | `co.paralleluniverse:quasar-kotlin:0.8.0`Or, build from sources by running:
```
./gradlew install
```## Usage
* [Documentation](http://docs.paralleluniverse.co/quasar/)
* [Javadoc](http://docs.paralleluniverse.co/quasar/javadoc)You can also study the examples [here](https://github.com/puniverse/quasar/tree/master/quasar-actors/src/test/java/co/paralleluniverse/actors).
You can also read the introductory [blog post](http://blog.paralleluniverse.co/post/49445260575/quasar-pulsar).
When running code that uses Quasar, the instrumentation agent must be run by adding this to the `java` command line:
```
-javaagent:path-to-quasar-jar.jar
```## Related Projects
* [Pulsar](https://github.com/puniverse/pulsar) is Quasar's extra-cool Clojure API
* [Comsat](https://github.com/puniverse/comsat) integrates Quasar with the JVM's web APIs## Getting help
Please make sure to double-check the [System Requirements](http://docs.paralleluniverse.co/quasar/#system-requirements) and [Troubleshooting](http://docs.paralleluniverse.co/quasar/#troubleshooting) sections of the docs, as well as at [currently open issues](https://github.com/puniverse/quasar/issues).
Questions and suggestions are welcome at this [forum/mailing list](https://groups.google.com/forum/?fromgroups#!forum/quasar-pulsar-user).
You can also open a [new GitHub issue](https://github.com/puniverse/quasar/issues/new) especially for bug reports and feature requests but if you're not sure please first get in touch with the community through the forum/mailing list.
## Contributions (including Pull Requests)
Please have a look at some brief [information for contributors](https://github.com/puniverse/quasar/blob/master/CONTRIBUTING.md).
## License
Quasar is free software published under the following license:
```
Copyright (c) 2013-2018, Parallel Universe Software Co. All rights reserved.This program and the accompanying materials are dual-licensed under
either the terms of the Eclipse Public License v1.0 as published by
the Eclipse Foundationor (per the licensee's choosing)
under the terms of the GNU Lesser General Public License version 3.0
as published by the Free Software Foundation.
```