/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a full listing of * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.statetransfer; import org.infinispan.container.entries.InternalCacheEntry; import org.infinispan.factories.scopes.Scope; import org.infinispan.factories.scopes.Scopes; import org.infinispan.jmx.annotations.ManagedAttribute; import org.infinispan.remoting.transport.Address; import org.rhq.helpers.pluginAnnotations.agent.DataType; import org.rhq.helpers.pluginAnnotations.agent.Metric; import java.util.Collection; /** * A component that manages the state transfer when the topology of the cluster changes. * * @author Dan Berindei <dan@infinispan.org> * @author Mircea Markus * @since 5.1 */ @Scope(Scopes.NAMED_CACHE) public interface StateTransferManager { @ManagedAttribute(description = "If true, the node has successfully joined the grid and is considered to hold state. If false, the join process is still in progress.") @Metric(displayName = "Is join completed?", dataType = DataType.TRAIT) boolean isJoinComplete(); void waitForJoinToComplete() throws InterruptedException; boolean hasJoinStarted(); void waitForJoinToStart() throws InterruptedException; @ManagedAttribute(description = "Checks whether there is a pending state transfer in the cluster.") @Metric(displayName = "Is state transfer in progress?", dataType = DataType.TRAIT) boolean isStateTransferInProgress(); void waitForStateTransferToComplete() throws InterruptedException; void applyState(Collection<InternalCacheEntry> state, Address sender, int viewId) throws InterruptedException; void applyLocks(Collection<LockInfo> locks, Address sender, int viewId) throws InterruptedException; /** * @return <code>true</code> if the key should be local but has not yet been copied to the local node */ boolean isLocationInDoubt(Object key); }