All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.epics.pvmanager.ChannelWriteCallback Maven / Gradle / Ivy

/**
 * Copyright (C) 2010-14 pvmanager developers. See COPYRIGHT.TXT
 * All rights reserved. Use is subject to license terms. See LICENSE.TXT
 */
package org.epics.pvmanager;

/**
 * Called by the ChannelHandler once a write is completed.
 *
 * @author carcassi
 */
public interface ChannelWriteCallback {
    
    /**
     * Called when a write is completed. If completed without error,
     * the argument is null.
     * 
     * @param ex the exception if the write failed, null otherwise
     */
    public void channelWritten(Exception ex);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy