mirror of
https://github.com/YunoHost-Apps/z-push_ynh.git
synced 2024-09-03 18:05:58 +02:00
12 lines
309 B
PHP
12 lines
309 B
PHP
<?php
|
|
|
|
interface IPingTracking {
|
|
/**
|
|
* Checks if there are newer ping requests for the same device & user so
|
|
* the current process could be terminated
|
|
*
|
|
* @access public
|
|
* @return boolean true if the current process is obsolete
|
|
*/
|
|
public function DoForcePingTimeout();
|
|
}
|