Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105919111
PhabricatorMetronomicTriggerClock.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Mar 20, 19:48
Size
727 B
Mime Type
text/x-php
Expires
Sat, Mar 22, 19:48 (2 d)
Engine
blob
Format
Raw Data
Handle
25072357
Attached To
rPH Phabricator
PhabricatorMetronomicTriggerClock.php
View Options
<?php
/**
* Triggers an event repeatedly, delaying a fixed number of seconds between
* triggers.
*
* For example, this clock can trigger an event every 30 seconds.
*/
final
class
PhabricatorMetronomicTriggerClock
extends
PhabricatorTriggerClock
{
public
function
validateProperties
(
array
$properties
)
{
PhutilTypeSpec
::
checkMap
(
$properties
,
array
(
'period'
=>
'int'
,
));
}
public
function
getNextEventEpoch
(
$last_epoch
,
$is_reschedule
)
{
$period
=
$this
->
getProperty
(
'period'
);
if
(
$last_epoch
)
{
$next
=
$last_epoch
+
$period
;
$next
=
max
(
$next
,
$last_epoch
+
1
);
}
else
{
$next
=
PhabricatorTime
::
getNow
()
+
$period
;
}
return
$next
;
}
}
Event Timeline
Log In to Comment