blob: 4ad473891e1a0d0637e7c696d299686fb5037f87 [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.internal.table.distributed.wrappers;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import org.apache.ignite.internal.event.EventListener;
import org.apache.ignite.internal.hlc.HybridTimestamp;
import org.apache.ignite.internal.placementdriver.PlacementDriver;
import org.apache.ignite.internal.placementdriver.ReplicaMeta;
import org.apache.ignite.internal.placementdriver.event.PrimaryReplicaEvent;
import org.apache.ignite.internal.placementdriver.event.PrimaryReplicaEventParameters;
import org.apache.ignite.internal.replicator.ReplicationGroupId;
/**
* A base for a {@link PlacementDriver} that delegates some of its methods to another {@link PlacementDriver}.
*/
abstract class DelegatingPlacementDriver implements PlacementDriver {
private final PlacementDriver delegate;
DelegatingPlacementDriver(PlacementDriver delegate) {
this.delegate = delegate;
}
@Override
public void listen(PrimaryReplicaEvent evt, EventListener<? extends PrimaryReplicaEventParameters> listener) {
delegate.listen(evt, listener);
}
@Override
public void removeListener(PrimaryReplicaEvent evt, EventListener<? extends PrimaryReplicaEventParameters> listener) {
delegate.removeListener(evt, listener);
}
@Override
public CompletableFuture<ReplicaMeta> awaitPrimaryReplica(ReplicationGroupId groupId, HybridTimestamp timestamp, long timeout,
TimeUnit unit) {
return delegate.awaitPrimaryReplica(groupId, timestamp, timeout, unit);
}
@Override
public CompletableFuture<ReplicaMeta> getPrimaryReplica(ReplicationGroupId replicationGroupId, HybridTimestamp timestamp) {
return delegate.getPrimaryReplica(replicationGroupId, timestamp);
}
@Override
public CompletableFuture<Void> previousPrimaryExpired(ReplicationGroupId grpId) {
return delegate.previousPrimaryExpired(grpId);
}
}