blob: 79e9a7ac246b37387441e183861d621ded49fb7c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Composent, Inc. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Scott Lewis - initial API and implementation
******************************************************************************/
package com.mycorp.examples.timeservice;
import java.util.concurrent.Future;
/**
* @since 1.1
*/
public interface ITimeServiceAsync {
public Future<Long> getCurrentTimeAsync();
}