source: java/main/src/main/java/com/framsticks/util/Future.java @ 77

Last change on this file since 77 was 77, checked in by psniegowski, 11 years ago

Add new java codebase.

File size: 138 bytes
Line 
1package com.framsticks.util;
2
3/**
4 * @author Piotr Sniegowski
5 */
6public interface Future <T> {
7    void result(T result, Exception e);
8}
Note: See TracBrowser for help on using the repository browser.