Skip to content
Snippets Groups Projects
Commit 44053fb0 authored by brinn's avatar brinn
Browse files

Add an information to RecordBaseQueuePersister what to use instead and set its...

Add an information to RecordBaseQueuePersister what to use instead and set its visibility to default.

SVN: 23855
parent b2525d72
No related branches found
No related tags found
No related merge requests found
......@@ -35,10 +35,11 @@ import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel;
* An {@link IQueuePersister} that is based on records in a file. This class uses Java serialization
* on the queue elements and thus requires queue elements to be serializable.
*
* @deprecated Use the {@link SmartQueuePersister} instead.
* @author Bernd Rinn
*/
@Deprecated
public class RecordBasedQueuePersister<E> implements IQueuePersister<E>
class RecordBasedQueuePersister<E> implements IQueuePersister<E>
{
final static int DEFAULT_INITIAL_RECORD_SIZE = 32;
......
......@@ -32,6 +32,9 @@ import java.util.Queue;
import ch.systemsx.cisd.base.exceptions.CheckedExceptionTunnel;
/**
* An {@link IQueuePersister} that is based on records in a file. This class uses Java serialization
* on the queue elements and thus requires queue elements to be serializable.
*
* @author Pawel Glyzewski
*/
public class SmartQueuePersister<E> implements IQueuePersister<E>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment