Allow a name to be provided to a persisting unit.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4316 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-08-10 22:03:06 +00:00
parent ec3f1c1ddd
commit 1d2c8ae7ac
@@ -39,6 +39,13 @@ public abstract class PersistingUnit extends Invoker.Unit
{
public PersistingUnit (InvocationService.InvocationListener listener)
{
this("UnknownPersistingUnit", listener);
}
public PersistingUnit (
String name, InvocationService.InvocationListener listener)
{
super(name);
_listener = listener;
}