Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 533f3501078c7dd9dbc16fc507402336eac7fd35 (plain) (tree)
1
2
3
4
5
6
7
8






                                                                             
                                                             


                                                                               










                                                  
/****************************************************************************
 * Copyright (c) 2014 Composent, Inc.
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * Contributors: Scott Lewis - initial API and implementation
 *
 * SPDX-License-Identifier: EPL-2.0
 *****************************************************************************/
package com.mycorp.examples.timeservice;

import java.util.concurrent.Future;

/**
 * @since 1.1
 */
public interface ITimeServiceAsync {

	public Future<Long> getCurrentTimeAsync();
}

Back to the top