Class GetFileEventHandler

  • All Implemented Interfaces:
    org.bitrepository.client.eventhandler.EventHandler

    public class GetFileEventHandler
    extends java.lang.Object
    implements org.bitrepository.client.eventhandler.EventHandler
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getInfo()  
      void handleEvent​(org.bitrepository.client.eventhandler.OperationEvent event)  
      boolean hasFailed()
      Method to determine if the operation failed.
      void waitForFinish()
      Method to wait for the operation to complete.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getInfo

        public java.lang.String getInfo()
      • handleEvent

        public void handleEvent​(org.bitrepository.client.eventhandler.OperationEvent event)
        Specified by:
        handleEvent in interface org.bitrepository.client.eventhandler.EventHandler
      • waitForFinish

        public void waitForFinish()
                           throws java.lang.InterruptedException
        Method to wait for the operation to complete. The method is blocking.
        Throws:
        java.lang.InterruptedException - if the thread is interrupted
      • hasFailed

        public boolean hasFailed()
        Method to determine if the operation failed. The method should not be called prior to a call to waitForFinish() have returned.
        Returns:
        false if the operation succeeded, otherwise true.