Skip to content

mahmoudm/quasar

 
 

Repository files navigation

Quasar
Lightweight threads and actors for the JVM

Build Status Dependency Status Version License License

Getting started

In Maven:

<dependency>
    <groupId>co.paralleluniverse</groupId>
    <artifactId>quasar-core</artifactId>
    <version>0.6.2</version>
</dependency>

or, for JDK8:

<dependency>
    <groupId>co.paralleluniverse</groupId>
    <artifactId>quasar-core</artifactId>
    <version>0.6.2</version>
    <classifier>jdk8</classifier>
</dependency>

To use actors, add

<dependency>
    <groupId>co.paralleluniverse</groupId>
    <artifactId>quasar-actors</artifactId>
    <version>0.6.2</version>
</dependency>

For clustering support add:

<dependency>
    <groupId>co.paralleluniverse</groupId>
    <artifactId>quasar-galaxy</artifactId>
    <version>0.6.2</version>
</dependency>

Or, build from sources by running:

./gradlew

Usage

You can also study the examples here.

You can also read the introductory blog post.

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 is Quasar's extra-cool Clojure API
  • Comsat integrates Quasar with the JVM's web APIs

Getting help

Questions and suggestions are welcome at this forum/mailing list.

License

Quasar is free software published under the following license:

Copyright (c) 2013-2014, 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.

About

Lightweight threads and actors for the JVM

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.9%
  • Shell 0.1%