1  /**
     2   * com.sekati.remoting.IRemoteCall
     3   * @version 1.0.0
     4   * @author jason m horwitz | sekati.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8   
     9  import com.sekati.core.CoreInterface;
    10  
    11  /**
    12   * Interface describing {@link RemoteCall}. 
    13   */
    14  interface com.sekati.remoting.IRemoteCall extends CoreInterface {
    15  
    16  	public function call():Void;
    17  }