This repository was archived by the owner on Dec 19, 2018. It is now read-only.
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
Revisit IServerFactory.Start #395
Closed
Description
Does it really need to pass back in the IFeatureCollection returned in Initialize?
IDisposable Start(IFeatureCollection serverFeatures, Func<IFeatureCollection, Task> application);
Why not just:
IDisposable Start(Func<IFeatureCollection, Task> application);
The current design does allow you to pass in different instances but I'm not sure if that's a goal since we don't use it that way currently.