Interface AuditDataListener



  • public interface AuditDataListener
    Interface for receiving list of object names in chunks.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onData​(java.lang.String[] chunk, boolean last)
      Receive next chunk of object names.
      void onError​(java.lang.String comment)
      Called when an error occured in kernel while reading data.
    • Method Detail

      • onData

        void onData​(java.lang.String[] chunk,
                    boolean last)
        Receive next chunk of object names. Method is called at least once. On each call next chunk of object names is delivered in chunk array. The last chunk is signaled by true in last.
        Parameters:
        chunk - array of object names
        last - true if the current chunk is the last one
      • onError

        void onError​(java.lang.String comment)
        Called when an error occured in kernel while reading data. Error can occur as a first message or after receiving several chunks, but no more chunks will be received after an error. Error is more closely specified by comment.
        Parameters:
        comment - user readable error description