Let's see if it helps to have the enum outside the class.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5105 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -26,7 +26,7 @@ import java.lang.annotation.Target;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
import com.threerings.presents.net.Transport;
|
||||
import com.threerings.presents.net.TransportType;
|
||||
|
||||
/**
|
||||
* An annotation indicating the type of transport desired for a distributed object
|
||||
@@ -37,7 +37,7 @@ import com.threerings.presents.net.Transport;
|
||||
public @interface TransportHint
|
||||
{
|
||||
/** The type of transport to use. */
|
||||
Transport.Type type () default Transport.Type.RELIABLE_ORDERED;
|
||||
TransportType type () default TransportType.RELIABLE_ORDERED;
|
||||
|
||||
/** For ordered transport types, the channel to use. */
|
||||
int channel () default 0;
|
||||
|
||||
Reference in New Issue
Block a user