Uses of Class
org.infinispan.util.ByteString
-
Packages that use ByteString Package Description org.infinispan.commands Commands that operate on the cache, either locally or remotely.org.infinispan.commands.control org.infinispan.commands.module org.infinispan.commands.read org.infinispan.commands.remote Meta-commands that wrap other commands for remote execution.org.infinispan.commands.remote.expiration org.infinispan.commands.remote.recovery org.infinispan.commands.triangle org.infinispan.commands.tx Commands that represent transactional lifecycle transitions.org.infinispan.commands.tx.totalorder org.infinispan.commands.write Commands that alter the state of the cache.org.infinispan.counter.logging org.infinispan.factories Factories are internal components used to create other components based on a cache's configuration.org.infinispan.marshall.exts Externalizers for various JDK types that are marshalled using the marshalling framework.org.infinispan.query.affinity This package contains the implementation of the AffinityIndexManager, that maintains an index divided into shards with storage using the Infinispan Lucene directory.org.infinispan.query.clustered org.infinispan.query.indexmanager org.infinispan.server.hotrod.command.tx org.infinispan.server.hotrod.tx.operation org.infinispan.server.hotrod.tx.table org.infinispan.statetransfer Transfer of state to new caches in a cluster.org.infinispan.util General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers.org.infinispan.util.logging Infinispan's logging abstractions that delegate to either JDK or Log4J logging engines.org.infinispan.xsite org.infinispan.xsite.statetransfer -
-
Uses of ByteString in org.infinispan.commands
Methods in org.infinispan.commands with parameters of type ByteString Modifier and Type Method Description CacheRpcCommand
RemoteCommandsFactory. fromStream(byte id, byte type, ByteString cacheName)
Resolve anCacheRpcCommand
from the stream.Constructors in org.infinispan.commands with parameters of type ByteString Constructor Description CancelCommand(ByteString ownerCacheName)
CancelCommand(ByteString ownerCacheName, UUID commandToCancel)
CreateCacheCommand(ByteString ownerCacheName)
CreateCacheCommand(ByteString ownerCacheName, String cacheNameToCreate, String cacheConfigurationName)
CreateCacheCommand(ByteString cacheName, String cacheNameToCreate, String cacheConfigurationName, int expectedMembers)
RemoveCacheCommand(ByteString cacheName, EmbeddedCacheManager cacheManager)
Deprecated. -
Uses of ByteString in org.infinispan.commands.control
Constructors in org.infinispan.commands.control with parameters of type ByteString Constructor Description LockControlCommand(Object key, ByteString cacheName, long flags, GlobalTransaction gtx)
LockControlCommand(Collection<?> keys, ByteString cacheName, long flags, GlobalTransaction gtx)
LockControlCommand(ByteString cacheName)
-
Uses of ByteString in org.infinispan.commands.module
Methods in org.infinispan.commands.module with parameters of type ByteString Modifier and Type Method Description CacheRpcCommand
ModuleCommandFactory. fromStream(byte commandId, ByteString cacheName)
Construct and initialize aCacheRpcCommand
based on the command id. -
Uses of ByteString in org.infinispan.commands.read
Constructors in org.infinispan.commands.read with parameters of type ByteString Constructor Description DistributedExecuteCommand(ByteString cacheName)
DistributedExecuteCommand(ByteString cacheName, Collection<Object> inputKeys, Callable<V> callable)
-
Uses of ByteString in org.infinispan.commands.remote
Fields in org.infinispan.commands.remote declared as ByteString Modifier and Type Field Description protected ByteString
BaseRpcCommand. cacheName
Methods in org.infinispan.commands.remote that return ByteString Modifier and Type Method Description ByteString
BaseRpcCommand. getCacheName()
ByteString
CacheRpcCommand. getCacheName()
Constructors in org.infinispan.commands.remote with parameters of type ByteString Constructor Description BaseClusteredReadCommand(ByteString cacheName, long flagBitSet)
BaseRpcCommand(ByteString cacheName)
BaseRpcInvokingCommand(ByteString cacheName)
Deprecated.ClusteredGetAllCommand(ByteString cacheName)
ClusteredGetAllCommand(ByteString cacheName, List<?> keys, long flags, GlobalTransaction gtx)
ClusteredGetCommand(Object key, ByteString cacheName, int segment, long flags)
ClusteredGetCommand(ByteString cacheName)
RenewBiasCommand(ByteString cacheName)
RenewBiasCommand(ByteString cacheName, Object[] keys)
RevokeBiasCommand(ByteString cacheName)
RevokeBiasCommand(ByteString cacheName, Address ackTarget, long id, int topologyId, Collection<Object> keys)
SingleRpcCommand(ByteString cacheName)
SingleRpcCommand(ByteString cacheName, ReplicableCommand command)
-
Uses of ByteString in org.infinispan.commands.remote.expiration
Constructors in org.infinispan.commands.remote.expiration with parameters of type ByteString Constructor Description RetrieveLastAccessCommand(ByteString cacheName)
RetrieveLastAccessCommand(ByteString cacheName, Object key, Object value, int segment)
UpdateLastAccessCommand(ByteString cacheName)
UpdateLastAccessCommand(ByteString cacheName, Object key, int segment, long accessTime)
-
Uses of ByteString in org.infinispan.commands.remote.recovery
Constructors in org.infinispan.commands.remote.recovery with parameters of type ByteString Constructor Description CompleteTransactionCommand(ByteString cacheName)
CompleteTransactionCommand(ByteString cacheName, Xid xid, boolean commit)
GetInDoubtTransactionsCommand(ByteString cacheName)
GetInDoubtTxInfoCommand(ByteString cacheName)
RecoveryCommand(ByteString cacheName)
TxCompletionNotificationCommand(long internalId, ByteString cacheName)
TxCompletionNotificationCommand(Xid xid, GlobalTransaction gtx, ByteString cacheName)
TxCompletionNotificationCommand(ByteString cacheName)
-
Uses of ByteString in org.infinispan.commands.triangle
Constructors in org.infinispan.commands.triangle with parameters of type ByteString Constructor Description MultiEntriesFunctionalBackupWriteCommand(ByteString cacheName)
MultiKeyFunctionalBackupWriteCommand(ByteString cacheName)
PutMapBackupWriteCommand(ByteString cacheName)
SingleKeyBackupWriteCommand(ByteString cacheName)
SingleKeyFunctionalBackupWriteCommand(ByteString cacheName)
-
Uses of ByteString in org.infinispan.commands.tx
Fields in org.infinispan.commands.tx declared as ByteString Modifier and Type Field Description protected ByteString
AbstractTransactionBoundaryCommand. cacheName
Methods in org.infinispan.commands.tx that return ByteString Modifier and Type Method Description ByteString
AbstractTransactionBoundaryCommand. getCacheName()
Constructors in org.infinispan.commands.tx with parameters of type ByteString Constructor Description AbstractTransactionBoundaryCommand(ByteString cacheName)
CommitCommand(ByteString cacheName)
CommitCommand(ByteString cacheName, GlobalTransaction gtx)
PrepareCommand(ByteString cacheName)
PrepareCommand(ByteString cacheName, GlobalTransaction gtx, boolean onePhaseCommit, WriteCommand... modifications)
PrepareCommand(ByteString cacheName, GlobalTransaction gtx, List<WriteCommand> commands, boolean onePhaseCommit)
RollbackCommand(ByteString cacheName)
RollbackCommand(ByteString cacheName, GlobalTransaction globalTransaction)
VersionedCommitCommand(ByteString cacheName)
VersionedCommitCommand(ByteString cacheName, GlobalTransaction gtx)
VersionedPrepareCommand(ByteString cacheName)
VersionedPrepareCommand(ByteString cacheName, GlobalTransaction gtx, List<WriteCommand> modifications, boolean onePhase)
-
Uses of ByteString in org.infinispan.commands.tx.totalorder
Constructors in org.infinispan.commands.tx.totalorder with parameters of type ByteString Constructor Description TotalOrderCommitCommand(ByteString cacheName)
TotalOrderCommitCommand(ByteString cacheName, GlobalTransaction gtx)
TotalOrderNonVersionedPrepareCommand(ByteString cacheName)
TotalOrderNonVersionedPrepareCommand(ByteString cacheName, GlobalTransaction gtx, List<WriteCommand> commands)
TotalOrderNonVersionedPrepareCommand(ByteString cacheName, GlobalTransaction gtx, WriteCommand... modifications)
TotalOrderRollbackCommand(ByteString cacheName)
TotalOrderRollbackCommand(ByteString cacheName, GlobalTransaction globalTransaction)
TotalOrderVersionedCommitCommand(ByteString cacheName)
TotalOrderVersionedCommitCommand(ByteString cacheName, GlobalTransaction gtx)
TotalOrderVersionedPrepareCommand(ByteString cacheName)
TotalOrderVersionedPrepareCommand(ByteString cacheName, GlobalTransaction gtx, List<WriteCommand> modifications, boolean onePhase)
-
Uses of ByteString in org.infinispan.commands.write
Constructors in org.infinispan.commands.write with parameters of type ByteString Constructor Description BackupAckCommand(ByteString cacheName)
BackupAckCommand(ByteString cacheName, long id, int topologyId)
BackupMultiKeyAckCommand(ByteString cacheName)
BackupMultiKeyAckCommand(ByteString cacheName, long id, int segment, int topologyId)
ExceptionAckCommand(ByteString cacheName)
ExceptionAckCommand(ByteString cacheName, long id, Throwable throwable, int topologyId)
InvalidateVersionsCommand(ByteString cacheName)
InvalidateVersionsCommand(ByteString cacheName, int topologyId, Object[] keys, int[] topologyIds, long[] versions, boolean removed)
-
Uses of ByteString in org.infinispan.counter.logging
Methods in org.infinispan.counter.logging with parameters of type ByteString Modifier and Type Method Description IllegalStateException
Log_$logger. metadataIsMissing(ByteString counterName)
IllegalStateException
Log. metadataIsMissing(ByteString counterName)
-
Uses of ByteString in org.infinispan.factories
Methods in org.infinispan.factories with parameters of type ByteString Modifier and Type Method Description ComponentRegistry
GlobalComponentRegistry. getNamedComponentRegistry(ByteString name)
-
Uses of ByteString in org.infinispan.marshall.exts
Methods in org.infinispan.marshall.exts with parameters of type ByteString Modifier and Type Method Description protected CacheRpcCommand
ReplicableCommandExternalizer. fromStream(byte id, byte type, ByteString cacheName)
-
Uses of ByteString in org.infinispan.query.affinity
Constructors in org.infinispan.query.affinity with parameters of type ByteString Constructor Description AffinityUpdateCommand(ByteString cacheName)
-
Uses of ByteString in org.infinispan.query.clustered
Constructors in org.infinispan.query.clustered with parameters of type ByteString Constructor Description ClusteredQueryCommand(ByteString cacheName)
For CommandFactory only. -
Uses of ByteString in org.infinispan.query.indexmanager
Constructors in org.infinispan.query.indexmanager with parameters of type ByteString Constructor Description AbstractUpdateCommand(ByteString cacheName)
IndexUpdateCommand(ByteString cacheName)
IndexUpdateStreamCommand(ByteString cacheName)
-
Uses of ByteString in org.infinispan.server.hotrod.command.tx
Constructors in org.infinispan.server.hotrod.command.tx with parameters of type ByteString Constructor Description ForwardCommitCommand(ByteString cacheName)
ForwardCommitCommand(ByteString cacheName, XidImpl xid, long timeout)
ForwardRollbackCommand(ByteString cacheName)
ForwardRollbackCommand(ByteString cacheName, XidImpl xid, long timeout)
-
Uses of ByteString in org.infinispan.server.hotrod.tx.operation
Methods in org.infinispan.server.hotrod.tx.operation with parameters of type ByteString Modifier and Type Method Description void
CommitTransactionOperation. addCache(ByteString cacheName, Status status)
void
RollbackTransactionOperation. addCache(ByteString cacheName, Status status)
-
Uses of ByteString in org.infinispan.server.hotrod.tx.table
Methods in org.infinispan.server.hotrod.tx.table that return ByteString Modifier and Type Method Description ByteString
CacheXid. getCacheName()
Methods in org.infinispan.server.hotrod.tx.table with parameters of type ByteString Modifier and Type Method Description void
CacheNameCollector. addCache(ByteString cacheName, Status status)
Adds the cache name and theSetDecisionFunction
return value.Constructors in org.infinispan.server.hotrod.tx.table with parameters of type ByteString Constructor Description CacheXid(ByteString cacheName, XidImpl xid)
-
Uses of ByteString in org.infinispan.statetransfer
Constructors in org.infinispan.statetransfer with parameters of type ByteString Constructor Description StateRequestCommand(ByteString cacheName)
StateRequestCommand(ByteString cacheName, StateRequestCommand.Type type, Address origin, int topologyId, IntSet segments)
StateResponseCommand(ByteString cacheName)
StateResponseCommand(ByteString cacheName, Address origin, int topologyId, Collection<StateChunk> stateChunks, boolean applyState, boolean pushTransfer)
-
Uses of ByteString in org.infinispan.util
Methods in org.infinispan.util that return ByteString Modifier and Type Method Description static ByteString
ByteString. emptyString()
static ByteString
ByteString. fromString(String s)
static ByteString
ByteString. readObject(ObjectInput input)
Methods in org.infinispan.util with parameters of type ByteString Modifier and Type Method Description static void
ByteString. writeObject(ObjectOutput output, ByteString object)
-
Uses of ByteString in org.infinispan.util.logging
Methods in org.infinispan.util.logging with parameters of type ByteString Modifier and Type Method Description static void
LogFactory. pushNDC(ByteString cacheName, boolean isTrace)
-
Uses of ByteString in org.infinispan.xsite
Fields in org.infinispan.xsite declared as ByteString Modifier and Type Field Description protected ByteString
BaseBackupReceiver. cacheName
Constructors in org.infinispan.xsite with parameters of type ByteString Constructor Description SingleXSiteRpcCommand(ByteString cacheName)
SingleXSiteRpcCommand(ByteString cacheName, VisitableCommand command)
XSiteAdminCommand(ByteString cacheName)
XSiteAdminCommand(ByteString cacheName, String siteName, XSiteAdminCommand.AdminOperation op, Integer afterFailures, Long minTimeToWait)
XSiteReplicateCommand(ByteString cacheName)
-
Uses of ByteString in org.infinispan.xsite.statetransfer
Methods in org.infinispan.xsite.statetransfer with parameters of type ByteString Modifier and Type Method Description XSiteStateTransferControlCommand
XSiteStateTransferControlCommand. copyForCache(ByteString cacheName)
Constructors in org.infinispan.xsite.statetransfer with parameters of type ByteString Constructor Description XSiteStatePushCommand(ByteString cacheName)
XSiteStatePushCommand(ByteString cacheName, XSiteState[] chunk, long timeoutMillis)
XSiteStateTransferControlCommand(ByteString cacheName)
XSiteStateTransferControlCommand(ByteString cacheName, XSiteStateTransferControlCommand.StateTransferControl control, String siteName)
-