diff options
author | Anton Tananaev <anton@traccar.org> | 2022-06-11 15:04:51 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-06-11 15:04:51 -0700 |
commit | 7c08991f12b4958135fdffc26f272677c03630ad (patch) | |
tree | c1111ec78bad1dd8b0e4eb8f0c9194095d154d57 /src/main/java/org/traccar/schedule/ScheduleTask.java | |
parent | 4025a42c42e34bb620f4263de05781a10ddc7a9d (diff) | |
download | trackermap-server-7c08991f12b4958135fdffc26f272677c03630ad.tar.gz trackermap-server-7c08991f12b4958135fdffc26f272677c03630ad.tar.bz2 trackermap-server-7c08991f12b4958135fdffc26f272677c03630ad.zip |
Inject network client
Diffstat (limited to 'src/main/java/org/traccar/schedule/ScheduleTask.java')
-rw-r--r-- | src/main/java/org/traccar/schedule/ScheduleTask.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/schedule/ScheduleTask.java b/src/main/java/org/traccar/schedule/ScheduleTask.java new file mode 100644 index 000000000..1b537213b --- /dev/null +++ b/src/main/java/org/traccar/schedule/ScheduleTask.java @@ -0,0 +1,22 @@ +/* + * Copyright 2022 Anton Tananaev (anton@traccar.org) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.traccar.schedule; + +import java.util.concurrent.ScheduledExecutorService; + +public interface ScheduleTask extends Runnable { + void schedule(ScheduledExecutorService executor); +} |