package org.simantics.utils; /** * Listener that can be added to IOperation. * * @author Hannu Niemistö */ public interface IOperationListener { /** * Called when the operation succeeds. */ void succeeded(Result result); /** * Called when the operation fails. */ void failed(E exception); }