-
Notifications
You must be signed in to change notification settings - Fork 9
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
Static Class Prototype #17
Static Class Prototype #17
Conversation
There is also an argument that this should live in a separate repository. Unlike the interface for the event loop driver (which we cannot change after publishing) - this is a code file which needs unit tests and could require maintenance. Also, if you are implementing the event loop driver you likely don't need to use this class - as it's intended for consumers. |
* | ||
* @return string An identifier that can be used to cancel, enable or disable the event. | ||
*/ | ||
public function onWritable($stream, callable $callback) |
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.
missing static ?
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.
Thank you, there were a few of those!
I think we can keep both in one repository, I don't really care. Any application requires both anyway. Just loop drivers might not need it, but even they might want to use the global accessor in unit tests. |
Even further, a number of packages that provide loop drivers also provide a lot more core functionality as well. Just look at the Icicle and Amp core packages. It makes sense I think to keep them together. |
@WyriHaximus @trowski @assertchris Can I have your thoughts on this approach? It's quite a significant deviation from our initial ideas and has some significant implications (requiring a test suite [phpunit?], static state, etc...). As a result, I'd like as many thoughts on as possible before investing significant time in this. If anyone has any alternative suggestions then a separate pull request (such as @CoderStephen 's) would make it easy to compare all of our options more objectively. |
I have a few reservations about this implementation:
|
|
I assumed we were targeting 7.0+ as some methods use scalar types for parameters. I was thinking of using Generally I was considering a nested event loop to be an error, but if this is something we want to allow, then this works. |
* | ||
* @return string An identifier that can be used to cancel, enable or disable the event. | ||
*/ | ||
public static function delay(callable $callback, float $time) |
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.
PHP 7+
I don't mind this approach, but I'm starting to think that a separate repo would be better. If we make a breaking change to the impl, the interfaces get a major version bump? :( |
If you still are considering the |
Here are my thoughts on the discussion:
@assertchris I'm not against putting this in a separate repo, but any package using the interface is almost for sure going to use the static class too. |
For the sake of have the discussions in one place we can keep it in this repo for now and move it later on when things matured more. |
*/ | ||
public static function stop() | ||
{ | ||
self::get()->stop(); |
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.
Should stopping the driver unset it?
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.
Agree; else you have no possibility to intentionally run destructors etc.
Especially important for tests.
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.
Stopping the event loop will cause the run()
method to return, which will trigger that behaviour inside execute()
?
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.
You're right.
@AndrewCarterUK Typo in your commit message |
Merged so you can continue with the PR discussed in #16 |
For those not in the know, this follows on from the discussion in #14 and attempts to solve the problem of being able to access the event loop without injecting it as a dependency anywhere.
The solution that I favour discussed in #14 is represented in this PR. I believe it represents a happy medium between injecting the event loop everywhere and global god classes. The life time of an event loop is easily defined by the scope within which it is invoked.
Example usage: