blob: 1fa1889e43832c50b3b64c1efe30fcee88932204 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2021 Robert Bosch GmbH and others.
*
* 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/
*
* SPDX-License-Identifier: EPL-2.0
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Asynchronous Server Call</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A asynchronous server call
* It refers to a optional runnable that exploits the results produced by the server
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.AsynchronousServerCall#getResultRunnable <em>Result Runnable</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getAsynchronousServerCall()
* @model
* @generated
*/
public interface AsynchronousServerCall extends ServerCall {
/**
* Returns the value of the '<em><b>Result Runnable</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Result Runnable</em>' reference.
* @see #setResultRunnable(org.eclipse.app4mc.amalthea.model.Runnable)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getAsynchronousServerCall_ResultRunnable()
* @model
* @generated
*/
org.eclipse.app4mc.amalthea.model.Runnable getResultRunnable();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.AsynchronousServerCall#getResultRunnable <em>Result Runnable</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Result Runnable</em>' reference.
* @see #getResultRunnable()
* @generated
*/
void setResultRunnable(org.eclipse.app4mc.amalthea.model.Runnable value);
} // AsynchronousServerCall