Guest User

Untitled

a guest
Oct 17th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. func runJanitor(c *cache, ci time.Duration) {
  2. j := &janitor{
  3. Interval: ci,
  4. stop: make(chan bool),
  5. }
  6. c.janitor = j
  7. go j.Run(c)
  8. }
Add Comment
Please, Sign In to add comment