use of org.eclipse.che.plugin.maven.shared.dto.StartStopNotification in project che by eclipse.
the class MavenServerNotifier method sendStartStop.
private void sendStartStop(boolean isStart) {
StartStopNotification dto = DtoFactory.newDto(StartStopNotification.class);
dto.setStart(isStart);
communication.send(DtoFactory.getInstance().toJsonElement(dto).getAsJsonObject(), MessageType.START_STOP);
}
Aggregations