blob: 092dfcb4a0f5d607cbc84063e9e5e2b6c2f899a6 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.ignite.tensorflow.cluster;
import java.util.HashSet;
import java.util.Optional;
import java.util.UUID;
import java.util.function.Consumer;
import org.apache.ignite.lang.IgniteBiPredicate;
import org.apache.ignite.tensorflow.util.SerializableConsumer;
/**
* TensorFlow cluster gateway that allows to subscribe on changes in cluster configuration.
*/
public class TensorFlowClusterGateway implements IgniteBiPredicate<UUID, Optional<TensorFlowCluster>>, AutoCloseable {
/** */
private static final long serialVersionUID = -540323262800791340L;
/** Callback that will be called on unsubscribe. */
private final SerializableConsumer<TensorFlowClusterGateway> unsubscribeCb;
/** Subscribers. */
private final HashSet<Consumer<Optional<TensorFlowCluster>>> subscribers = new HashSet<>();
/** Last value received from the upstream. */
private Optional<TensorFlowCluster> last;
/**
* Constructs a new instance of TensorFlow cluster gateway.
*
* @param unsubscribeCb Callback that will be called on unsubscribe.
*/
public TensorFlowClusterGateway(SerializableConsumer<TensorFlowClusterGateway> unsubscribeCb) {
this.unsubscribeCb = unsubscribeCb;
}
/**
* Subscribers the specified subscriber on the upstream events.
*
* @param subscriber Subscriber.
*/
public synchronized void subscribe(Consumer<Optional<TensorFlowCluster>> subscriber) {
subscribers.add(subscriber);
if (last != null)
subscriber.accept(last);
}
/**
* Unsubscribe the specified subscriber.
*
* @param subscriber Subscriber.
*/
public synchronized void unsubscribe(Consumer<Optional<TensorFlowCluster>> subscriber) {
subscribers.remove(subscriber);
}
/** {@inheritDoc} */
@Override public synchronized boolean apply(UUID uuid, Optional<TensorFlowCluster> cluster) {
for (Consumer<Optional<TensorFlowCluster>> subscriber : subscribers)
subscriber.accept(cluster);
last = cluster;
return true;
}
/** {@inheritDoc} */
@Override public void close() {
subscribers.clear();
unsubscribeCb.accept(this);
}
}