-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathTimer.php
More file actions
70 lines (65 loc) · 2.36 KB
/
Timer.php
File metadata and controls
70 lines (65 loc) · 2.36 KB
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
65
66
67
68
69
70
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\util;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
/**
* The `Timer` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class Timer extends Object_
{
/**
* Terminates this timer, discarding any currently scheduled tasks.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#cancel
* @param null|mixed $a
* @throws NotImplementedException
*/
public function cancel($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Removes all cancelled tasks from this timer's task queue.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#purge
* @param null|mixed $a
* @throws NotImplementedException
*/
public function purge($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Schedules the specified task for execution after the specified delay.
* Schedules the specified task for repeated fixed-delay execution, beginning after the specified delay.
* Schedules the specified task for execution at the specified time.
* Schedules the specified task for repeated fixed-delay execution, beginning at the specified time.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#schedule
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function schedule($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
* Schedules the specified task for repeated fixed-rate execution, beginning at the specified time.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#scheduleAtFixedRate
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function scheduleAtFixedRate($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
}