We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 13c93af + a020880 commit 8a84f70Copy full SHA for 8a84f70
src/LoopDriver.php
@@ -159,4 +159,15 @@ public function setErrorHandler(callable $callback = null);
159
* @return bool
160
*/
161
public function supports($feature);
162
+
163
+ /**
164
+ * Get the underlying loop handle.
165
+ *
166
+ * Example: the uv_loop resource for libuv or the EvLoop object for libev or null for a native driver
167
168
+ * Note: This function is *not* exposed in the Loop class; users shall access it directly on the respective loop instance.
169
170
+ * @return null|object|resource The loop handle the event loop operates on. Null if there is none.
171
+ */
172
+ public static function getHandle();
173
}
0 commit comments