1

I wrote a class that performs an asynchronous loop. It needs a package name. I already have a util package, but feel resistant to put half of my classes in that package. If it really belongs there, I'll put it there, but I'd feel much better if I can find a more appropriate/specific package. What do you think?

destroytoday
  • 227
  • 2
  • 12

3 Answers3

1

peach for parallel each.

 

Shamelessly stolen from the Ruby project with the same name.

akuhn
  • 27,477
  • 2
  • 76
  • 91
0

A package is normally created for more than one class. If your class uses some helper classes, then it should go in a separate package; differently, you should use the generic package you already have.

apaderno
  • 28,547
  • 16
  • 75
  • 90
0

I ended up going with "timer" as the package name after finding many similarities with the Timer class that sits in the timer package.

destroytoday
  • 227
  • 2
  • 12