2 つのタスクが必要です。HandlerA と HandlerB は、それぞれ 10 秒ごとと 20 秒ごとに実行されます。この解決策が間違っている場合、これを達成するための最良の方法は何ですか?
ScheduledExecutorService stp = Executors.newScheduledThreadPool(8);
stp.scheduleAtFixedRate(new HandlerA(), 0, 10, TimeUnit.SECONDS);
stp.scheduleAtFixedRate(new HandlerB(), 0, 20, TimeUnit.SECONDS);
別のタスクをスケジュールすると、スケジュールされたタスクは上書きされますか?