package foundation.capacity;
|
|
import foundation.dao.preload.Bucket;
|
|
public class ActorBucket extends Bucket<Actor> {
|
|
private static ActorBucket instance;
|
|
static {
|
instance = newInstance();
|
}
|
|
private ActorBucket() {
|
|
}
|
|
public static ActorBucket getInstance() {
|
return instance;
|
}
|
|
public static ActorBucket newInstance() {
|
return new ActorBucket();
|
}
|
|
public void activate() {
|
instance = this;
|
}
|
|
}
|