Instance Method
インスタンスメソッド
schedule(after:
schedule(after:interval:tolerance:options:_:)
Performs the action at some time after the specified date, at the specified frequency, using the specified tolerance and options.
指定された日付の後にある時点でアクションを実行します、指定された頻度で、指定された許容期間とオプションを使います。
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func schedule(after date: RunLoop
.SchedulerTimeType
, interval: RunLoop
.SchedulerTimeType
.Stride
, tolerance: RunLoop
.SchedulerTimeType
.Stride
, options: RunLoop
.SchedulerOptions
?, _ action: @escaping () -> Void
) -> Cancellable
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Scheduling Combine Publishers Combineパブリッシャーを予定する
func schedule(options: RunLoop.SchedulerOptions?, () -> Void)
Performs the action at some time after the specified date, using the scheduler’s minimum tolerance.
指定された日付の後にある時点でアクションを実行します、スケジューラのもつ最小限の許容期間を使います。
func schedule(after: RunLoop.SchedulerTimeType, tolerance: RunLoop.SchedulerTimeType.Stride, options: RunLoop.SchedulerOptions?, () -> Void)
Performs the action at some time after the specified date, using the specified tolerance and options.
指定された日付の後にある時点でアクションを実行します、指定された許容期間とオプションを使います。
var minimumTolerance : RunLoop.SchedulerTimeType.Stride
The minimum tolerance the run loop scheduler allows.
var now: RunLoop.SchedulerTimeType
The run loop scheduler’s definition of the current moment in time.
現時点の実行ループスケジューラのもつ定義。
struct RunLoop.SchedulerTimeType
The scheduler time type that the run loop uses.
struct RunLoop.SchedulerOptions
A set of options that affect the operation of the run loop scheduler.
実行ループスケジューラの操作に影響するオプションの一揃い。