View Javadoc

1   package fr.in2p3.jsaga.impl.job.instance.stream;
2   
3   import fr.in2p3.jsaga.adaptor.job.control.interactive.JobIOGetterInteractive;
4   import org.ogf.saga.error.*;
5   
6   import java.io.OutputStream;
7   
8   /* ***************************************************
9   * *** Centre de Calcul de l'IN2P3 - Lyon (France) ***
10  * ***             http://cc.in2p3.fr/             ***
11  * ***************************************************
12  * File:   Stdin
13  * Author: Sylvain Reynaud (sreynaud@in2p3.fr)
14  * Date:   23 mai 2008
15  * ***************************************************
16  * Description:                                      */
17  /**
18   *
19   */
20  public abstract class Stdin extends OutputStream {
21      public abstract void openJobIOHandler(JobIOGetterInteractive ioHandler) throws NotImplementedException, PermissionDeniedException, TimeoutException, NoSuccessException;
22      public abstract byte[] getBuffer();
23  }