Alphatier (Java version)

Alphatier is a resource management library. It is designed to allow different schedulers to share the resources of a pool of executors in order to execute tasks with those.

License

License

Categories

Categories

Java Languages
GroupId

GroupId

io.alphatier
ArtifactId

ArtifactId

alphatier-java
Last Version

Last Version

0.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

Alphatier (Java version)
Alphatier is a resource management library. It is designed to allow different schedulers to share the resources of a pool of executors in order to execute tasks with those.
Project URL

Project URL

http://alphatier.io/
Source Code Management

Source Code Management

https://github.com/sarnowski/alphatier-java

Download alphatier-java

How to add to project

<!-- https://jarcasting.com/artifacts/io.alphatier/alphatier-java/ -->
<dependency>
    <groupId>io.alphatier</groupId>
    <artifactId>alphatier-java</artifactId>
    <version>0.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/io.alphatier/alphatier-java/
implementation 'io.alphatier:alphatier-java:0.2.0'
// https://jarcasting.com/artifacts/io.alphatier/alphatier-java/
implementation ("io.alphatier:alphatier-java:0.2.0")
'io.alphatier:alphatier-java:jar:0.2.0'
<dependency org="io.alphatier" name="alphatier-java" rev="0.2.0">
  <artifact name="alphatier-java" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.alphatier', module='alphatier-java', version='0.2.0')
)
libraryDependencies += "io.alphatier" % "alphatier-java" % "0.2.0"
[io.alphatier/alphatier-java "0.2.0"]

Dependencies

compile (3)

Group / Artifact Type Version
io.alphatier : alphatier jar 0.2.0
org.clojure : core.memoize jar 0.5.6
autodoc » autodoc jar 0.9.0

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

There are no modules declared in this project.

Alphatier (Java version)

Alphatier is a resource management library. It is designed to allow different schedulers to share the resources of a pool of executors in order to execute tasks with those.

The detailed documentation is located at

Java version

This Java version is a statically typed wrapper around the Alphatier library. Please read its documentation to gain knowledge about its usage. The documented namespaces from Alphatier are available through their respective Java interfaces.

  • io.alphatier.pools
    • interface: io.alphatier.java.Pools
    • implementation: io.alphatier.java.InternalPools
  • io.alphatier.schedulers
    • interface: io.alphatier.java.Schedulers
    • implementation: io.alphatier.java.InternalSchedulers
  • io.alphatier.constraints
    • interface: io.alphatier.java.Constraints
    • implementation: io.alphatier.java.InternalConstraints
  • io.alphatier.executors
    • interface: io.alphatier.java.Executors
    • implementation: io.alphatier.java.InternalExecutors

Usage

The library is available in the central Maven repository:

<dependency>
    <groupId>io.alphatier</groupId>
    <artifactId>alphatier-java</artifactId>
    <version>0.2.0</version>
</dependency>

Development

The source code is managed via git and hosted on Github. See the Github help pages for more information.

The source is tested on every update by Travis-CI.

Build Status

The build process of this library is managed by Maven. The following commands have to be executed at the root of your project checkout:

Cleanup your project

mvn clean

The command deletes all generated files in order to guarantee a clean and defined project state.

Running the test suite

mvn test

The test suite is implemented in the src/test/ directory. The test command runs all implemented unit tests.

Building a jar artifact

mvn package

The produced jar file can be used in other JVM based projects. It requires all other dependant jars on the classpath (see pom.xml).

License

Copyright (c) 2014 Tobias Sarnowski <[email protected]>

Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Versions

Version
0.2.0
0.1.0