My favorites | Sign in
Project Home Wiki Issues Source
Project Information
Members

Overview

The tempus-fugit library is a small collection of classes and interfaces capturing common abstractions useful when writing concurrent and time sensitive code.

The source is hosted here via Subversion, you can download via the public Maven Central repository (http://repo1.maven.org/maven2/). Just add the dependancy to your pom,

<dependency>
  <groupId>com.google.code.tempus-fugit</groupId>
  <artifactId>tempus-fugit</artifactId>
  <version>1.1-SNAPSHOT</version>
</dependency>

You can also download the jar directly from

http://repo2.maven.org/maven2/com/google/code/tempus-fugit/tempus-fugit/

or

https://oss.sonatype.org/content/groups/public/com/google/code/tempus-fugit/tempus-fugit/ (including snapshot releases)

or from the terminal

$ curl http://repo2.maven.org/maven2/com/google/code/tempus-fugit/tempus-fugit/1.1/tempus-fugit-1.1.jar > tempus-fugit-1.1.jar
$ mvn install:install-file -Dfile=tempus-fugit-1.1.jar -DgroupId=com.google.code.tempus-fugit -DartifactId=tempus-fugit -Dversion=1.1 -Dpackaging=jar

Feel free to make comments and suggestions or raise issues via the Issues tab.

New 1.1 Release

1.1 is available and contains some changes to the API, for the moment older API methods that I no longer like are marked as @Deprecated but I'll be removing them at some later point (prob 1.2-SNAPSHOT). The changes are mostly minor and your IDE should help you out but have a look in Subversion or the change report for a preview. Let me know if anything is too off.

Powered by Google Project Hosting