Back to project page playn-perf.
The source code is released under:
PlayN Perf - performance tests for the PlayN game framework Copyright (c) 2013, Three Rings Design, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modifi...
If you think the Android project playn-perf listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// // PlayN Performance Tests // http://github.com/threerings/playn-perf/blob/master/LICENSE //www. ja va2 s . c om package com.threerings.perf.core; import playn.core.util.Callback; import static playn.core.PlayN.log; public abstract class CB<T> implements Callback<T> { @Override public void onFailure (Throwable cause) { log().warn("Ack", cause); } }