public bool IsLimitReached(ExportPartitioningContext context)
 {
     return(context.SizeInBytes >= _bytesPerFile);
 }
Esempio n. 2
0
 public bool IsLimitReached(ExportPartitioningContext context)
 {
     return(false);
 }
Esempio n. 3
0
 public bool IsLimitReached(ExportPartitioningContext context)
 {
     return(context.MessageCount > 0 &&
            _messagesPerPartition != 0 &&
            context.MessageCount % _messagesPerPartition == 0);
 }