-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zimmer62 stuff #94
base: master
Are you sure you want to change the base?
Zimmer62 stuff #94
Conversation
zimmer62@356e0eb * Non-blocking connect support * Made some protected properties public
@@ -11,20 +11,20 @@ public static class Connector | |||
Justification = "The function wouldn't do anything without a plugin.")] | |||
[SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes", | |||
Justification = "I don't know what kinds of exceptions it _could_ throw.")] | |||
public static void Connect<TPlugin>(string[] args) where TPlugin : HspiBase, new() | |||
public static TPlugin Connect<TPlugin>(string[] args, bool pollForShutdown = true) where TPlugin : HspiBase, new() | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So if pollForShutdown is true, the app will exit when the plugin shuts down, and this method will block until it does. And if it isn’t true, this method will return a plug-in instance. Do multiple plugins get loaded at a time? If one of them is polling for shutdown and shuts down then the whole app will exit. Is this intended?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HS does support multiple plugin instances, but that's ultimately going to be different code. The current HSPI code doesn't support multiple instances. Still have to figure out how all that works.
@@ -43,7 +43,7 @@ public static void Connect<TPlugin>(string[] args) where TPlugin : HspiBase, new | |||
// let the plugin do it's thing, wait until it shuts down or the connection to HomeSeer fails. | |||
try | |||
{ | |||
while (true) | |||
while (pollForShutdown) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, based on the behavior you may want to rename it exitOnShutdown
and say if (exitOnShutdown) while true {...} }
. It’d make it easier to understand.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Meh, I get what you're saying, but I don't know about exitOnShutdown
either. I kinda half-ass threw pollForShutdown
on the table just to see if it stuck. Apparently, it didn't. I'll think about it some more before merging, as changing the name later would result in a breaking change.
via zimmer62/HSPI@356e0eb
Rather than introduce a new method as @zimmer62 did, I modified the existing
Connect
method to optionally return immediately. By default, theConnect
function works as it always has.