Changed default poll interval to 1000 ms (1 second)

This commit is contained in:
Mark Fisher
2007-12-15 15:55:04 +00:00
parent 592f28f0e3
commit 627534bf27

View File

@@ -37,6 +37,6 @@ import java.lang.annotation.Target;
@Documented
public @interface Polled {
int period() default 100;
int period() default 1000;
}