|
@@ -101,28 +101,29 @@ public class DelegatingSecurityContextTaskScheduler implements TaskScheduler {
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public ScheduledFuture<?> schedule(Runnable task, Instant startTime) {
|
|
public ScheduledFuture<?> schedule(Runnable task, Instant startTime) {
|
|
- return delegate.schedule(wrap(task), startTime);
|
|
|
|
|
|
+ return this.delegate.schedule(wrap(task), startTime);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public ScheduledFuture<?> scheduleAtFixedRate(Runnable task, Instant startTime, Duration period) {
|
|
public ScheduledFuture<?> scheduleAtFixedRate(Runnable task, Instant startTime, Duration period) {
|
|
- return delegate.scheduleAtFixedRate(wrap(task), startTime, period);
|
|
|
|
|
|
+ return this.delegate.scheduleAtFixedRate(wrap(task), startTime, period);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public ScheduledFuture<?> scheduleAtFixedRate(Runnable task, Duration period) {
|
|
public ScheduledFuture<?> scheduleAtFixedRate(Runnable task, Duration period) {
|
|
- return delegate.scheduleAtFixedRate(wrap(task), period);
|
|
|
|
|
|
+ return this.delegate.scheduleAtFixedRate(wrap(task), period);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable task, Instant startTime, Duration delay) {
|
|
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable task, Instant startTime, Duration delay) {
|
|
- return delegate.scheduleWithFixedDelay(wrap(task), startTime, delay);
|
|
|
|
|
|
+ return this.delegate.scheduleWithFixedDelay(wrap(task), startTime, delay);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable task, Duration delay) {
|
|
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable task, Duration delay) {
|
|
- return delegate.scheduleWithFixedDelay(wrap(task), delay);
|
|
|
|
|
|
+ return this.delegate.scheduleWithFixedDelay(wrap(task), delay);
|
|
}
|
|
}
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public Clock getClock() {
|
|
public Clock getClock() {
|
|
return this.delegate.getClock();
|
|
return this.delegate.getClock();
|