我想使用
的值// Invoke callback every second
let interval = CMTime(seconds:1.0, preferredTimescale: CMTimeScale(NSEC_PER_SEC))
// Queue on which to invoke the callback
let mainQueue = DispatchQueue.main
// Keep the reference to remove
self.playerObserver = player.addPeriodicTimeObserver(forInterval: interval, queue: mainQueue) { time in
print(time)
}
,代表我正在阅读的记录#>> processing->写入我的处理器。
我无法获取chunkContext。如何在处理器中使用chunkContext?
我认为它是自动装入工作的,但我可能没有正确地做到这一点。我是这类高级Java的新手,非常感谢任何帮助(和耐心)!
答案 0 :(得分:0)
您可以在处理器中添加以下conde以访问StepExecution
@BeforeStep
public void beforeStep(StepExecution stepExecution) {
}