use of org.ow2.proactive_grid_cloud_portal.scheduler.dto.eventing.EventNotification in project scheduling by ow2-proactive.
the class SchedulerEventBroadcaster method jobSubmittedEvent.
@Override
public void jobSubmittedEvent(JobState jobState) {
logEvent(jobState);
broadcast(new EventNotification(EventNotification.Action.JOB_SUBMITTED, SchedulerEvent.JOB_SUBMITTED.name(), jobState));
}
use of org.ow2.proactive_grid_cloud_portal.scheduler.dto.eventing.EventNotification in project scheduling by ow2-proactive.
the class SchedulerEventBroadcaster method usersUpdatedEvent.
@Override
public void usersUpdatedEvent(NotificationData<UserIdentification> notification) {
logEvent(notification);
broadcast(new EventNotification(EventNotification.Action.USERS_UPDATED, eventTypeName(notification), notification.getData()));
}
Aggregations