ideltaprocessor.java

来自「Python Development Environment (Python I」· Java 代码 · 共 29 行

JAVA
29
字号
/*
 * Created on 12/10/2005
 */
package org.python.pydev.core;

public interface IDeltaProcessor<X> {

    /**
     * Process some update that was added with the passed data.
     */
    void processUpdate(X data);
    
    /**
     * Process some delete that was added with the passed data.
     */
    void processDelete(X data);
    
    /**
     * Process some insert that was added with the passed data.
     */
    void processInsert(X data);
    
    /**
     * Ends the processing (so that the processor might save all the delta info in a large chunck,
     * as the deltas will be deleted from the disk after this call).
     */
    void endProcessing();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?