我可以使用计时器,例如NSTimer
在 Vapor(服务器端 Swift)中吗?
我希望我用 Vapor 编写的服务器可以偶尔主动完成一些任务。例如,每 15 分钟从网络轮询一些数据。
如何使用 Vapor 实现这一目标?
我可以使用计时器,例如NSTimer
在 Vapor(服务器端 Swift)中吗?
我希望我用 Vapor 编写的服务器可以偶尔主动完成一些任务。例如,每 15 分钟从网络轮询一些数据。
如何使用 Vapor 实现这一目标?
如果您只需要触发一个简单的计时器,一次或多次您可以使用该Dispatch
schedule()
函数创建它。如果需要,您可以暂停、恢复和取消它。
这是一个代码片段:
import Vapor
import Dispatch
/// Controls basic CRUD operations on `Session`s.
final class SessionController {
let timer: DispatchSourceTimer
/// Initialize the controller
init() {
self.timer = DispatchSource.makeTimerSource()
self.startTimer()
print("Timer created")
}
// *** Functions for timer
/// Configure & activate timer
func startTimer() {
timer.setEventHandler() {
self.doTimerJob()
}
timer.schedule(deadline: .now() + .seconds(5), repeating: .seconds(10), leeway: .seconds(10))
if #available(OSX 10.14.3, *) {
timer.activate()
}
}
// *** Functions for cancel old sessions
///Cancel sessions that has timed out
func doTimerJob() {
print("Cancel sessions")
}
}