io.fluxcapacitor.javaclient.scheduling.client.WebsocketSchedulingClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Default Java client library for interfacing with Flux Capacitor.
/*
* Copyright (c) 2016-2017 Flux Capacitor.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.fluxcapacitor.javaclient.scheduling.client;
import io.fluxcapacitor.common.Awaitable;
import io.fluxcapacitor.common.Backlog;
import io.fluxcapacitor.common.api.scheduling.CancelSchedule;
import io.fluxcapacitor.common.api.scheduling.Schedule;
import io.fluxcapacitor.common.api.scheduling.ScheduledMessage;
import io.fluxcapacitor.common.serialization.websocket.JsonDecoder;
import io.fluxcapacitor.common.serialization.websocket.JsonEncoder;
import io.fluxcapacitor.javaclient.common.websocket.AbstractWebsocketService;
import lombok.extern.slf4j.Slf4j;
import javax.websocket.ClientEndpoint;
import java.net.URI;
import java.util.List;
@Slf4j
@ClientEndpoint(encoders = JsonEncoder.class, decoders = JsonDecoder.class)
public class WebsocketSchedulingClient extends AbstractWebsocketService implements SchedulingClient {
private final Backlog backlog;
public WebsocketSchedulingClient(String endPointUrl) {
this(URI.create(endPointUrl));
}
public WebsocketSchedulingClient(URI endpointUri) {
super(endpointUri);
backlog = new Backlog<>(this::scheduleMessages);
}
protected Awaitable scheduleMessages(List scheduledMessages) throws Exception {
getSession().getBasicRemote().sendObject(new Schedule(scheduledMessages));
return Awaitable.ready();
}
@Override
public Awaitable schedule(ScheduledMessage... schedules) {
return backlog.add(schedules);
}
@Override
public Awaitable cancelSchedule(String scheduleId) {
try {
getSession().getBasicRemote().sendObject(new CancelSchedule(scheduleId));
} catch (Exception e) {
log.warn("Could not cancel schedule {}", scheduleId, e);
return () -> {
throw e;
};
}
return Awaitable.ready();
}
}