FileStreamerProcessor

Namespace: WellFired.Profile

Inherits: WellFired.Profile.ProfileProcessor.FileProcessor

Description

A custom Profile Processor that will stream your profiled data to disk. Use this variation if you’re worried about your application not exiting cleanly, otherwise, use the FileProcessor

Public Methods

  FileStreamerProcessor ( string filepath )
  FileStreamerProcessor ( Stream stream )
override void RecordingUpdated ( )
override void RecordingStopped ( )

Breakdown

  • FileStreamerProcessor ( string filepath )

    Description

    Constructs a new instance of a FileStreamerProcessor.

    Parameters

    filepath The file you’d like to dump your recording data into
  • FileStreamerProcessor ( Stream stream )

    Description

    Constructs a new instance of FileStreamerProcessor, use this variation if you’d like to manage your own stream.

    Parameters

    stream
  • override void RecordingUpdated ( )

    Description

    The recording data has been updated.

  • override void RecordingStopped ( )

    Description

    The recording has stopped.