Package com.tangosol.persistence
Class ArchiverHelper
- java.lang.Object
-
- com.tangosol.persistence.ArchiverHelper
-
@Deprecated public class ArchiverHelper extends Object
Deprecated.this API is intended for internal purposes only and will be removed in a future version of CoherenceVarious helper methods for the archiver functionality.- Since:
- 12.2.1
- Author:
- tam 2014.03.18
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ArchiverHelper.DirectoryFileFilter
Deprecated.FileFilter implementation that only includes directories.
-
Constructor Summary
Constructors Constructor Description ArchiverHelper()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static void
allocateSnapshotPartitions(Map<Integer,Object[]> mapStores, int cPartitions)
Deprecated.Given aMap
of member Id's and the stores each member can see for a given snapshot, allocate the stores evenly as so to allow the archival process to run in parallel across the greatest number of members.static Set<Integer>
getMembersOwningPartition(Map<Integer,Object[]> mapStores, String sStore)
Deprecated.Return theSet
of members who are aware of a particular store.
-
-
-
Method Detail
-
allocateSnapshotPartitions
public static void allocateSnapshotPartitions(Map<Integer,Object[]> mapStores, int cPartitions)
Deprecated.Given aMap
of member Id's and the stores each member can see for a given snapshot, allocate the stores evenly as so to allow the archival process to run in parallel across the greatest number of members. Each member may see the same stores, as they may be on shared disk or on the same machine.
-
-