Groovy web console

subscribe to the feed Subscribe
to this
site

elvis-or-else

Published 4 months ago by jj
Actions Execute script  ▶ Edit in console Back to console Show/hide line numbers View recent scripts

def loadDataIfNeccesary(cachedData) {
    cachedData?:loadData()
//    Optional.ofNullable(cachedData).orElse(loadData())
}

def loadData() {
   sleep(5000)
   // very expensive operation
   "fresh data"
}


loadDataIfNeccesary("dataz")