
org.infinispan.context.SingleKeyNonTxInvocationContext Maven / Gradle / Ivy
/*
* 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.context;
import org.infinispan.container.entries.CacheEntry;
import org.infinispan.container.entries.InternalCacheEntry;
import org.infinispan.remoting.transport.Address;
import org.infinispan.util.InfinispanCollections;
import java.util.Collections;
import java.util.Map;
import java.util.Set;
/**
* @author Mircea Markus
* @author Sanne Grinovero
* @since 5.1
*/
public final class SingleKeyNonTxInvocationContext implements InvocationContext {
/**
* It is possible for the key to only be wrapped but not locked, e.g. when a get takes place.
*/
private boolean isLocked;
private final boolean isOriginLocal;
private Object key;
private CacheEntry cacheEntry;
//TODO move reference to ClassLoader to InvocationContextFactory (Memory allocation cost)
private ClassLoader classLoader;
//TODO move the Origin's address to the InvocationContextFactory when isOriginLocal=true -> all addresses are the same (Memory allocation cost)
//(verify if this is worth it by looking at object alignment - would need a different implementation as pointing to null wouldn't help)
private Address origin;
public SingleKeyNonTxInvocationContext(final boolean originLocal) {
this.isOriginLocal = originLocal;
}
@Override
public boolean isOriginLocal() {
return isOriginLocal;
}
@Override
public boolean isInTxScope() {
return false;
}
@Override
public Object getLockOwner() {
return Thread.currentThread();
}
@Override
public Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy