[go: up one dir, main page]

Menu

Tree [6fe82e] v0.6.1 /
 History

HTTPS access


File Date Author Commit
 .idea 2015-04-10 Daniel Sperry Daniel Sperry [c0908b] Setting intellij copyright defaults.
 actors 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1
 async 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1
 commons 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1
 container 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1
 packaging 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1
 samples 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1
 utils 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1
 web 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1
 .gitignore 2015-05-28 Jeff Theriault Jeff Theriault [40d680] Adding .DS_Store to gitignore
 .travis.yml 2015-08-16 Joe Hegarty Joe Hegarty [f51543] Improving Test
 CONTRIBUTING.md 2015-09-02 Joe Hegarty Joe Hegarty [f9396a] Update CONTRIBUTING.md
 LICENSE 2015-03-26 joe@bioware.com joe@bioware.com [bd0f36] First Commit
 README.md 2015-08-17 Joe Hegarty Joe Hegarty [2de86b] Adding Jeff to Orbit team list
 eclipse-code-style.epf 2015-04-09 Sperry, Daniel Sperry, Daniel [bbd471] Adding eclipse preference file copyright settings.
 pom.xml 2015-12-09 Joe Hegarty Joe Hegarty [6fe82e] Version 0.6.1

Read Me

Orbit Framework

Release
Maven Central
Javadocs
Build Status
Gitter

Orbit is a modern framework for JVM languages that makes it easier to build and maintain distributed and scalable online services.
It was developed by BioWare, a division of Electronic Arts. For the latest news, follow us on Twitter.

Orbit is primarily made up of the following components:

  • Orbit Actors, a framework to write distributed systems using virtual actors.
  • Orbit Async, async-await methods for the JVM.
  • Orbit Container, a minimal inversion of control container for building online services.
  • Orbit Utils, a set of utils to help simplify various tasks on the JVM.
  • Orbit Web, a lightweight HTTP and Websockets container for Orbit, powered by Jetty.
  • Orbit Commons, various common utilities used by Orbit.

Documentation

Documentation is located here.

See the Hello World sample.

License

Orbit is licensed under the BSD 3-Clause License.

The Orbit Team

Simple Examples

Actors - Java

public interface Hello extends Actor
{
    Task<String> sayHello(String greeting);
}

public class HelloActor extends AbstractActor implements Hello
{
    public Task<String> sayHello(String greeting)
    {
        getLogger().info("Here: " + greeting);
        return Task.fromValue("Hello There");
    }
}

Actor.getReference(Hello.class, "0").sayHello("Meep Meep");

Actors - Scala

trait Hello extends Actor {
  def sayHello(greeting: String): Task[String]
}

class HelloActor extends AbstractActor[AnyRef] with Hello {
  def sayHello(greeting: String): Task[String] = {
    getLogger.info("Here: " + greeting)
    Task.fromValue("Hello There")
  }
}

Actor.getReference(classOf[Hello], "0").sayHello("Meep Meep")