Do you want one callback per thread, or one callback periodper object, or a true Singleton?
Some sketches on how to do the different variants - just from the top of my head, don't take these too literally :)
Please note that I've assumed that the Callback has a nontrivial constructor that might throw exception that needs to be handled, if it's a trivial constructor you can simplify all of these a lot.
One per thread:
private static ThreadLocal<Callback> callback;
public Foo()
{
super(getCallback());
}
private static Callback getCallback()
{
if ( callback.get() == null )
callback.set(new Callback());
return callback.get();
}
Single callback for all threads:
private final static Callback callback;
static {
callback = new Callback();
}
public Foo()
{
super(getCallback());
}
private static Callback getCallback()
{
return callback;
}
And, for completness, one callback per object:
private Callback callback;
public Foo()
{
super(getCallback());
}
private Callback getCallback()
{
callback = new Callback();
return callback;
}
