com.myJava.file.delta
Interface DeltaProcessor

All Known Implementing Classes:
DefaultDeltaProcessor, LayerWriterDeltaProcessor

public interface DeltaProcessor


Author:
Olivier PETRUCCI

Areca Build ID : 7299034069467778562

Method Summary
 void begin()
           
 void blockFound(HashSequenceEntry entry, LinkedList block)
           
 void blockFound(long readFrom, long readTo)
           
 void bytesLost(long from, long to)
           
 void end()
           
 void newByte(byte data)
           
 void newBytes(byte[] data, int offset, int len)
           
 

Method Detail

begin

void begin()
           throws DeltaProcessorException
Throws:
DeltaProcessorException

newBytes

void newBytes(byte[] data,
              int offset,
              int len)
              throws DeltaProcessorException
Throws:
DeltaProcessorException

newByte

void newByte(byte data)
             throws DeltaProcessorException
Throws:
DeltaProcessorException

blockFound

void blockFound(HashSequenceEntry entry,
                LinkedList block)
                throws DeltaProcessorException
Throws:
DeltaProcessorException

blockFound

void blockFound(long readFrom,
                long readTo)
                throws DeltaProcessorException
Throws:
DeltaProcessorException

bytesLost

void bytesLost(long from,
               long to)
               throws DeltaProcessorException
Throws:
DeltaProcessorException

end

void end()
         throws DeltaProcessorException
Throws:
DeltaProcessorException