Esempio n. 1
0
 /// <summary>
 /// Grab the jobtracker's view of the staging directory path where
 /// job-specific files will  be placed.
 /// </summary>
 /// <returns>the staging directory where job-specific files are to be placed.</returns>
 /// <exception cref="System.IO.IOException"/>
 /// <exception cref="System.Exception"/>
 public virtual Path GetStagingAreaDir()
 {
     if (stagingAreaDir == null)
     {
         stagingAreaDir = new Path(client.GetStagingAreaDir());
     }
     return(stagingAreaDir);
 }