marklogic / marklogic-jena

Adapter for using MarkLogic with the Jena RDF Framework
Other
5 stars 11 forks source link

scheduleFixedRate #20

Closed xquery closed 9 years ago

xquery commented 9 years ago

have you considered using Date() to init timer aka

timer.scheduleAtFixedRate(cache, new Date(), 1000);

vs

timer.scheduleAtFixedRate(cache, 1000, 1000);
xquery commented 9 years ago

ignore this, I was looking into overloaded variant and tests now confirm orig approach is good

grechaw commented 9 years ago

ah ok :)