blob: b6eddab5eb37f662b97e47cbb906e158c946686d [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.processors.cluster;
import org.apache.ignite.IgniteCheckedException;
import org.apache.ignite.IgniteException;
import org.apache.ignite.cluster.ClusterState;
import org.apache.ignite.internal.IgniteEx;
import org.apache.ignite.internal.processors.task.GridInternal;
import org.apache.ignite.lang.IgniteRunnable;
import org.apache.ignite.resources.IgniteInstanceResource;
/**
* Request for the change cluster state from client node.
*/
@GridInternal
public class ClientSetClusterStateComputeRequest implements IgniteRunnable {
/** */
private static final long serialVersionUID = 0L;
/** */
private final ClusterState state;
/** If {@code true}, cluster deactivation will be forced. */
private final boolean forceDeactivation;
/** */
private final BaselineTopology baselineTopology;
/** */
private final boolean forceChangeBaselineTopology;
/** Ignite. */
@IgniteInstanceResource
private IgniteEx ig;
/**
* @param state New cluster state.
* @param forceDeactivation If {@code true}, cluster deactivation will be forced.
* @param blt New baseline topology.
* @param forceBlt Force change cluster state.
*/
ClientSetClusterStateComputeRequest(
ClusterState state,
boolean forceDeactivation,
BaselineTopology blt,
boolean forceBlt
) {
this.state = state;
this.baselineTopology = blt;
this.forceChangeBaselineTopology = forceBlt;
this.forceDeactivation = forceDeactivation;
}
/** {@inheritDoc} */
@Override public void run() {
try {
ig.context().state().changeGlobalState(
state,
forceDeactivation,
baselineTopology != null ? baselineTopology.currentBaseline() : null,
forceChangeBaselineTopology
).get();
}
catch (IgniteCheckedException ex) {
throw new IgniteException(ex);
}
}
}