public void Dispose() { if (_currentBatch.Any()) { _indexer.IndexAsync(_currentBatch).Wait(); _currentBatch.Clear(); } }
public void Dispose() { if (!_currentBatch.IsEmpty) { _indexer.IndexAsync(_currentBatch); _currentBatch.Clear(); } }