blob: 44dd4740b59fe4ece45524bf65af281992b4043b [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.network;
import org.apache.ignite.internal.manager.IgniteComponent;
/**
* Class, that represents the network-related resources of a node and provides entry points for working with the
* network members of a cluster.
*/
public interface ClusterService extends IgniteComponent {
/**
* Returns the {@link TopologyService} for working with the cluster topology.
*
* @return Topology Service.
*/
TopologyService topologyService();
/**
* Returns the {@link MessagingService} for sending messages to the cluster members.
*
* @return Messaging Service.
*/
MessagingService messagingService();
/**
* Returns the local configuration of this node.
*
* @return Configuration of the current node.
*/
ClusterLocalConfiguration localConfiguration();
/** {@inheritDoc} */
@Override default void stop() {
// TODO: IGNITE-15161 Implement component's stop.
}
/**
* Checks whether cluster service has been stopped.
*
* @return {@code true} if cluster service is stopped, {@code false} otherwise.
*/
public boolean isStopped();
}