*/ namespace Asio; /** * Class WrappedHandler * * Async handler callback wrapped by strand. * * @package Asio */ final class WrappedHandler { /** * This class can only be instantiated using `Strand::wrap()`. */ private function __construct() {} /** * Making object callable. * * Note: Calling directly has no effect. */ function __invoke() {} }