C D O P

C

configureClock(Clock) - Method in class org.prevayler.PrevaylerFactory
Configures the Clock that will be used by the created Prevayler.
configureJournalDiskSync(boolean) - Method in class org.prevayler.PrevaylerFactory
Configures whether the journal will sync writes to disk.
configureJournalFileAgeThreshold(long) - Method in class org.prevayler.PrevaylerFactory
Sets the age (in milliseconds) of the journal file.
configureJournalFileSizeThreshold(long) - Method in class org.prevayler.PrevaylerFactory
Configures the size (in bytes) of the journal file.
configureJournalSerializer(JavaSerializer) - Method in class org.prevayler.PrevaylerFactory
 
configureJournalSerializer(XStreamSerializer) - Method in class org.prevayler.PrevaylerFactory
 
configureJournalSerializer(String, Serializer) - Method in class org.prevayler.PrevaylerFactory
Configures the transaction journal Serializer to be used by the Prevayler created by this factory.
configureMonitor(Monitor) - Method in class org.prevayler.PrevaylerFactory
Assigns a monitor object to receive notifications from Prevayler.
configurePrevalenceDirectory(String) - Method in class org.prevayler.PrevaylerFactory
Configures the directory where the created Prevayler will read and write its .journal and .snapshot files.
configurePrevalentSystem(P) - Method in class org.prevayler.PrevaylerFactory
Configures the prevalent system that will be used by the Prevayler created by this factory.
configureReplicationClient(String, int) - Method in class org.prevayler.PrevaylerFactory
Reserved for future implementation.
configureReplicationServer(int) - Method in class org.prevayler.PrevaylerFactory
Reserved for future implementation.
configureSnapshotSerializer(JavaSerializer) - Method in class org.prevayler.PrevaylerFactory
 
configureSnapshotSerializer(XStreamSerializer) - Method in class org.prevayler.PrevaylerFactory
 
configureSnapshotSerializer(String, Serializer) - Method in class org.prevayler.PrevaylerFactory
Configure a serialization strategy for snapshots.
configureTransactionDeepCopy(boolean) - Method in class org.prevayler.PrevaylerFactory
Configures whether deep copies of transactions are executed instead of the transactions themselves, upon calling ".execute" on the created Prevayler.
configureTransientMode(boolean) - Method in class org.prevayler.PrevaylerFactory
Determines whether the Prevayler created by this factory should be transient or persistent.
create() - Method in class org.prevayler.PrevaylerFactory
Returns a Prevayler created according to what was defined by calls to the configuration methods above.
createCheckpointPrevayler(P, String) - Static method in class org.prevayler.PrevaylerFactory
Creates a Prevayler that will execute Transactions WITHOUT writing them to disk.
createPrevayler(P, String) - Static method in class org.prevayler.PrevaylerFactory
Creates a Prevayler that will use the given prevalenceBase directory to read and write its .snapshot and .journal files, using standard Java serialization.
createPrevayler(P) - Static method in class org.prevayler.PrevaylerFactory
Creates a Prevayler that will use a directory called "PrevalenceBase" under the current directory to read and write its .snapshot and .journal files, using standard Java serialization.
createTransientPrevayler(P) - Static method in class org.prevayler.PrevaylerFactory
Creates a Prevayler that will execute Transactions WITHOUT writing them to disk.
createTransientPrevayler(P, String) - Static method in class org.prevayler.PrevaylerFactory
Deprecated. Use createCheckpointPrevayler() instead of this method. Deprecated since Prevayler2.00.001.

D

DEFAULT_REPLICATION_PORT - Static variable in class org.prevayler.PrevaylerFactory
 

O

org.prevayler - package org.prevayler
 

P

PrevaylerFactory<P> - Class in org.prevayler
Provides easy access to all Prevayler configurations and implementations available in this distribution.
PrevaylerFactory() - Constructor for class org.prevayler.PrevaylerFactory
Example:

PrevaylerFactory<MyObjectToPersist> f = new PrevaylerFactory<MyObjectToPersist>();

Use if you want access to any configuration options not available via the static method short-cuts.

C D O P

Copyright © 2001-2013. All Rights Reserved.