Back to project page java_mega_api.
The source code is released under:
GNU General Public License
If you think the Android project java_mega_api listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/******************************************************************************* * Copyright (c) 2013 Dan Brough dan@danbrough.org. All rights reserved. * This program and the accompanying materials are made available under the * terms of the GNU Public License v3.0 which accompanies this distribution, * and is available at http://www.gnu.org/licenses/gpl.html * /* ww w. j a v a 2 s . c o m*/ ******************************************************************************/ package org.danbrough.mega; import java.util.concurrent.TimeUnit; public interface ThreadPool { void start(); void stop(); void background(Runnable job); void background(Runnable callable, long delay, TimeUnit unit); }