# quasar **Repository Path**: ggg/quasar ## Basic Information - **Project Name**: quasar - **Description**: Fibers, Channels and Actors for the JVM - **Primary Language**: Java - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-13 - **Last Updated**: 2024-06-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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) [![Dependency Status](https://www.versioneye.com/user/projects/52b019baec1375ace70000de/badge.png?style=flat)](https://www.versioneye.com/user/projects/52b019baec1375ace70000de) [![Version](http://img.shields.io/badge/version-0.7.8-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.7.8[:jdk8]` (for JDK 8 optionally add the `jdk8` classifier) | Actors | `co.paralleluniverse:quasar-actors:0.7.8` | Clustering | `co.paralleluniverse:quasar-galaxy:0.7.8` | Reactive Streams | `co.paralleluniverse:quasar-reactive-streams:0.7.8` | Disruptor Channels| `co.paralleluniverse:quasar-disruptor:0.7.8` | Kotlin | `co.paralleluniverse:quasar-kotlin:0.7.8` Or, build from sources by running: ``` gradle 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-2017, 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 Foundation or (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. ```