internal SubscriptionPointersFileStorage(SubscriptionPointersFileStorageOptions options)
 {
     fileLengthThreshold = options.FileLengthThreshold;
     namePrefix          = options.NamePrefix;
     directoryPath       = options.DirectoryPath;
     fileName            = Path.Combine(directoryPath, namePrefix + ".bin");
 }
 public SubscriptionPointersFileStorageOptions(SubscriptionPointersFileStorageOptions options)
 {
     FileLengthThreshold = options.FileLengthThreshold;
     NamePrefix          = options.NamePrefix;
     DirectoryPath       = options.DirectoryPath;
 }