Skip to content

Commit 77173fd

Browse files
Follow up SchedulableExecutor -> SchedulingExecutor rename
swiftlang/swift@6046286
1 parent 250af4d commit 77173fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/JavaScriptEventLoop/JavaScriptEventLoop+ExecutorFactory.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extension JavaScriptEventLoop: MainExecutor {
2727
extension JavaScriptEventLoop: TaskExecutor {}
2828

2929
@available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, visionOS 9999, *)
30-
extension JavaScriptEventLoop: SchedulableExecutor {
30+
extension JavaScriptEventLoop: SchedulingExecutor {
3131
public func enqueue<C: Clock>(
3232
_ job: consuming ExecutorJob,
3333
after delay: C.Duration,
@@ -52,7 +52,7 @@ extension JavaScriptEventLoop: SchedulableExecutor {
5252
@available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, visionOS 9999, *)
5353
extension JavaScriptEventLoop: ExecutorFactory {
5454
// Forward all operations to the current thread's JavaScriptEventLoop instance
55-
final class CurrentThread: TaskExecutor, SchedulableExecutor, MainExecutor, SerialExecutor {
55+
final class CurrentThread: TaskExecutor, SchedulingExecutor, MainExecutor, SerialExecutor {
5656
func checkIsolated() {}
5757

5858
func enqueue(_ job: consuming ExecutorJob) {

0 commit comments

Comments
 (0)