Write() public method

This method write the queue content to the filesystem
public Write ( ) : void
return void
Example #1
0
        public static void CheckinObject(string filePath, string storePath)
        {
            ObjectStore store = new ObjectStore (storePath);
            store.Checkin (filePath);

            store.Write ();
        }