public abstract class AbstractSequentialFileFactory extends Object implements SequentialFileFactory
Modifier and Type | Field and Description |
---|---|
protected int |
bufferSize |
protected long |
bufferTimeout |
protected static int |
EXECUTOR_TIMEOUT |
protected String |
journalDir |
protected TimedBuffer |
timedBuffer |
protected ExecutorService |
writeExecutor
Asynchronous writes need to be done at another executor.
|
Constructor and Description |
---|
AbstractSequentialFileFactory(String journalDir,
boolean buffered,
int bufferSize,
int bufferTimeout,
boolean logRates,
IOCriticalErrorListener criticalErrorListener) |
Modifier and Type | Method and Description |
---|---|
void |
activateBuffer(SequentialFile file) |
void |
createDirs()
Create the directory if it doesn't exist yet
|
void |
deactivateBuffer() |
void |
flush() |
String |
getDirectory() |
List<String> |
listFiles(String extension) |
void |
onIOError(int errorCode,
String message,
SequentialFile file)
The SequentialFile will call this method when a disk IO Error happens during the live phase.
|
void |
releaseBuffer(ByteBuffer buffer) |
void |
start() |
void |
stop() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
allocateDirectBuffer, calculateBlockSize, clearBuffer, createSequentialFile, getAlignment, isSupportsCallbacks, newBuffer, releaseDirectBuffer, wrapBuffer
protected static final int EXECUTOR_TIMEOUT
protected final String journalDir
protected final TimedBuffer timedBuffer
protected final int bufferSize
protected final long bufferTimeout
protected ExecutorService writeExecutor
public AbstractSequentialFileFactory(String journalDir, boolean buffered, int bufferSize, int bufferTimeout, boolean logRates, IOCriticalErrorListener criticalErrorListener)
public void stop()
stop
in interface SequentialFileFactory
public String getDirectory()
getDirectory
in interface SequentialFileFactory
public void start()
start
in interface SequentialFileFactory
public void onIOError(int errorCode, String message, SequentialFile file)
SequentialFileFactory
onIOError
in interface SequentialFileFactory
public void activateBuffer(SequentialFile file)
activateBuffer
in interface SequentialFileFactory
public void flush()
flush
in interface SequentialFileFactory
public void deactivateBuffer()
deactivateBuffer
in interface SequentialFileFactory
public void releaseBuffer(ByteBuffer buffer)
releaseBuffer
in interface SequentialFileFactory
public void createDirs() throws Exception
createDirs
in interface SequentialFileFactory
Exception
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.