ConcurrentFileWriter 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package ConcurrentFileWriter --version 1.0.1
NuGet\Install-Package ConcurrentFileWriter -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ConcurrentFileWriter" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ConcurrentFileWriter --version 1.0.1
#r "nuget: ConcurrentFileWriter, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ConcurrentFileWriter as a Cake Addin
#addin nuget:?package=ConcurrentFileWriter&version=1.0.1

// Install ConcurrentFileWriter as a Cake Tool
#tool nuget:?package=ConcurrentFileWriter&version=1.0.1

A class library for managing multi-threaded sequential write access to one or more files.
It is capable of flushing writes from multiple threads in batches by either hitting a specified size threshold or a specified inactivity time limit. It is also possible to write this batching information within the output file(s).
Note: This class should be injected as a single or static instance shared across all process threads.
Files will be locked exclusively from the first Write() call until FlushAndClose() is called or the class is disposed.

The ConcurrentFileWriter class can be found as an extension of System.IO

*** Full debugging source/symbols are available from http://srv.symbolsource.org/pdb/Public

Usage Example:

var cfw = new ConcurrentFileWriter(new ConcurrentFileWriterSettings {
            flushTimeInMilliseconds = 5000,
            flushSizeInBytes = 10000,
            showWriteBatchingMarkers = true
               });

//Pre-lock file (not required)
cfw.Write(@"c:\temp\test.log", null);

//Append a string (byte arrays can also be directly written)
cfw.WriteUtf8Line(@"c:\temp\test.log", "Test Line");

//Flush and unlock specified file (stop managing)
cfw.CloseManagedFile(@"c:\temp\test.log");

//Flush and unlock all managed files
cfw.Dispose();

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 2,457 11/30/2015
1.0.1 1,668 11/30/2015
1.0.0 4,993 11/28/2015

* Now flushes & closes all managed files on destructor of ConcurrentFileWriter class (not just on disposal).