Package com.alibaba.otter.node.etl.common.io.download.impl.observer

Examples of com.alibaba.otter.node.etl.common.io.download.impl.observer.DefaultExceptionObserver


    protected abstract void buildDownload(String cmdPath, String url, String targetDir, String[] params);

    public void connect() throws DataRetrieveException {
        this.download.addObserver(new DefaultStatusObserver(logger));
        this.download.addObserver(new DefaultProgressObserver(logger));
        this.download.addObserver(new DefaultExceptionObserver(logger));
    }
View Full Code Here

TOP

Related Classes of com.alibaba.otter.node.etl.common.io.download.impl.observer.DefaultExceptionObserver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.