1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 
<?php

namespace SAREhub\Commons\Zmq\PublishSubscribe;

/**
 * Implementation of zmq forwarder device
 */
class ZmqForwarderDevice
{

    const DEFAULT_TIMEOUT = 5;

    /**
     * @var \ZMQDevice
     */
    private $device;

    public function __construct(\ZMQDevice $device)
    {
        $this->device = $device;
    }

    /**
     * @return ZmqForwarderDeviceBuilder
     */
    public static function getBuilder()
    {
        return new ZmqForwarderDeviceBuilder();
    }

    /**
     * @param callable $callback
     * @param mixed|null $userData
     * @return $this
     */
    public function setTimerCallback(callable $callback, $userData = null)
    {
        $this->device->setTimerCallback($callback, self::DEFAULT_TIMEOUT, $userData);
        return $this;
    }

    /**
     * @param int $timeout
     * @return $this
     */
    public function setTimerTimeout($timeout)
    {
        $this->device->setTimerTimeout($timeout);
        return $this;
    }

    /**
     * @return int
     */
    public function getTimerTimeout()
    {
        return $this->device->getTimerTimeout();
    }

    public function run()
    {
        $this->device->run();
    }
}