public class BinaryTable<T extends BinaryTable<T>> extends Object
Constructor and Description |
---|
BinaryTable() |
Modifier and Type | Method and Description |
---|---|
void |
addPropertyChangeListener(PropertyChangeListener listener)
Adds a property change listener
|
Integer |
batchSize()
Deprecated.
Deprecated. Use max-batch-size instead.
|
T |
batchSize(Integer value)
Deprecated.
Deprecated. Use max-batch-size instead.
|
Boolean |
createOnStart()
Indicates whether the store should create this database table when the
cache starts.
|
T |
createOnStart(Boolean value)
Indicates whether the store should create this database table when the
cache starts.
|
Map |
dataColumn()
A database column to hold cache entry data.
|
T |
dataColumn(Map value)
A database column to hold cache entry data.
|
T |
dataColumn(String key,
Object value)
A database column to hold cache entry data.
|
Boolean |
dropOnStop()
Indicates whether the store should drop this database table when the
cache stops.
|
T |
dropOnStop(Boolean value)
Indicates whether the store should drop this database table when the
cache stops.
|
Integer |
fetchSize()
For DB queries, the fetch size will be used to set the fetch size on
ResultSets.
|
T |
fetchSize(Integer value)
For DB queries, the fetch size will be used to set the fetch size on
ResultSets.
|
String |
getKey() |
Map |
idColumn()
A database column to hold cache entry ids.
|
T |
idColumn(Map value)
A database column to hold cache entry ids.
|
T |
idColumn(String key,
Object value)
A database column to hold cache entry ids.
|
String |
prefix()
The prefix for the database table name.
|
T |
prefix(String value)
The prefix for the database table name.
|
void |
removePropertyChangeListener(PropertyChangeListener listener)
Removes a property change listener
|
Map |
timestampColumn()
A database column to hold cache entry timestamps.
|
T |
timestampColumn(Map value)
A database column to hold cache entry timestamps.
|
T |
timestampColumn(String key,
Object value)
A database column to hold cache entry timestamps.
|
public String getKey()
public void addPropertyChangeListener(PropertyChangeListener listener)
public void removePropertyChangeListener(PropertyChangeListener listener)
@Deprecated public Integer batchSize()
@Deprecated public T batchSize(Integer value)
public Boolean createOnStart()
public T createOnStart(Boolean value)
public Map dataColumn()
public T dataColumn(String key, Object value)
public Boolean dropOnStop()
public T dropOnStop(Boolean value)
public Integer fetchSize()
public T fetchSize(Integer value)
public Map idColumn()
public String prefix()
public Map timestampColumn()
public T timestampColumn(Map value)
Copyright © 2020 JBoss by Red Hat. All rights reserved.