protected WorkerThreadCheck threadCheck = new WorkerThreadCheck();
private static final Object threadCheckHolder = new Object();
+
+ protected boolean readable = false;
+
+ protected boolean writeable = false;
// --------------------------------------------------------- Public Methods
/**
}
public boolean isReadable() {
- throw new UnsupportedOperationException();
+ return readable;
+ }
+
+ public void setReadable(boolean r) {
+ this.readable = r;
}
public boolean isWriteable() {
- throw new UnsupportedOperationException();
+ return writeable;
+ }
+
+ public void setWriteable(boolean w) {
+ this.writeable = w;
}
public void configure(CometEvent.CometConfiguration... options)