mvSapphire / PowerPipe

A library for .NET that uses a fluent interface to construct advanced workflows with ease.
MIT License
174 stars 9 forks source link

Fixed memory leak #4

Closed mvSapphire closed 1 year ago

mvSapphire commented 1 year ago

Due to the factory being registered as a singleton, it was holding references to objects that were never disposed of.

Added switch with ServiceLifetime to choose a lifetime on demand. By default, lifetime is set as Transient.

Consider register factory with the same lifetime as your steps.