DiskStore instead@Deprecated public interface DiskWriteAttributes extends Serializable
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o)
Deprecated.
Two
DiskWriteAttributes are equal if the both
specify the synchronous writes, or they both specify asynchronous
writes with the same time interval, bytes threshold, maxOplogSize and
compaction values |
long |
getBytesThreshold()
Deprecated.
as of 6.5 use
DiskStore.getQueueSize()
instead. |
int |
getMaxOplogSize()
Deprecated.
as of 6.5 use
DiskStore.getMaxOplogSize()
instead. |
long |
getTimeInterval()
Deprecated.
as of 6.5 use
DiskStore.getTimeInterval()
instead. |
boolean |
isRollOplogs()
Deprecated.
Returns true if the oplogs is to be rolled to a more condensed format (on disk)
|
boolean |
isSynchronous()
Deprecated.
as of 6.5 use
RegionAttributes.isDiskSynchronous() instead. |
@Deprecated boolean isSynchronous()
RegionAttributes.isDiskSynchronous() instead.DiskWriteAttributes object
configures synchronous writes.boolean isRollOplogs()
@Deprecated int getMaxOplogSize()
DiskStore.getMaxOplogSize()
instead.@Deprecated long getTimeInterval()
DiskStore.getTimeInterval()
instead.DiskWriteAttributes configures synchronous writing,
then timeInterval has no meaning.@Deprecated long getBytesThreshold()
DiskStore.getQueueSize()
instead.DiskWriteAttributes configures synchronous writing,
then bytesThreshold has no meaning.boolean equals(Object o)
DiskWriteAttributes are equal if the both
specify the synchronous writes, or they both specify asynchronous
writes with the same time interval, bytes threshold, maxOplogSize and
compaction valuesCopyright © 1997-2017 Pivotal Software, Inc. All rights reserved.