use of org.onosproject.net.intent.IntentInstallationContext in project onos by opennetworkinglab.
the class InstallCoordinator method success.
/**
* Handles success operation context.
*
* @param context the operation context
*/
public void success(IntentOperationContext context) {
IntentInstallationContext intentInstallationContext = context.intentInstallationContext();
intentInstallationContext.removePendingContext(context);
if (intentInstallationContext.isPendingContextsEmpty()) {
finish(intentInstallationContext);
}
}
Aggregations