java - Make all other threads wait while executing a method with annoation @Scheduled in spring -


i having method load() scheduled run every 10min using spring @scheduled(fixedrate = 100000) . method perform actions load huge data static list.

my main program uses list perform logic. want main program wait when load() executing.

can 1 suggest how can done?


Comments