Package matlabcontrol.extensions
Interface CallbackMatlabProxy.MatlabCallback
-
- Enclosing class:
- CallbackMatlabProxy
public static interface CallbackMatlabProxy.MatlabCallbackA callback that indicates either the invocation succeeding or an exception being raised.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinvocationFailed(MatlabInvocationException e)Called when the method failed.voidinvocationSucceeded()Called when the method successfully completed.
-
-
-
Method Detail
-
invocationSucceeded
void invocationSucceeded()
Called when the method successfully completed.
-
invocationFailed
void invocationFailed(MatlabInvocationException e)
Called when the method failed.- Parameters:
e- the exception thrown
-
-