1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 02:09:23 +02:00
ampache/modules/React/EventLoop/Timer/TimerInterface.php

15 lines
334 B
PHP

<?php
namespace React\EventLoop\Timer;
interface TimerInterface
{
public function getLoop();
public function getInterval();
public function getCallback();
public function setData($data);
public function getData();
public function isPeriodic();
public function isActive();
public function cancel();
}