blob: 355ca70c464b0667ba61fb04303abc79acbc1574 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
using System;
using System.Threading.Tasks;
using Org.Apache.REEF.Client.Common;
using Org.Apache.REEF.Client.YARN.RestClient.DataModel;
using Org.Apache.REEF.Utilities.Attributes;
namespace Org.Apache.REEF.Client.API
{
/// <summary>
/// Interface for job submission on a REEF cluster
/// </summary>
// ReSharper disable once InconsistentNaming
public interface IREEFClient
{
/// <summary>
/// Submit the job described in jobRequest to the cluster.
/// </summary>
/// <param name="jobSubmission"></param>
[Obsolete("Deprecated in 0.14. Please use Submit(JobRequest)")]
void Submit(IJobSubmission jobSubmission);
/// <summary>
/// Submit the job described in jobRequest to the cluster.
/// </summary>
/// <param name="jobRequest"></param>
void Submit(JobRequest jobRequest);
/// <summary>
/// Submit the job described in jobRequest to the cluster.
/// Expect IJobSubmissionResult returned after the call.
/// </summary>
/// <param name="jobRequest"></param>
/// <returns>IJobSubmissionResult</returns>
[Unstable("0.13", "Working in progress for what to return after submit")]
IJobSubmissionResult SubmitAndGetJobStatus(JobRequest jobRequest);
/// <summary>
/// Returns the application status in running the job
/// </summary>
/// <param name="appId"></param>
/// <returns></returns>
[Unstable("0.14", "Working in progress for rest API status returned")]
Task<FinalState> GetJobFinalStatus(string appId);
}
}