Aber ich bin auf dem "Roster" -Objekt synchronisieren überall wo es neu wird. Woher ?java.lang.IllegalMonitorStateException: Objekt nicht vor dem Warten durch den Thread gesperrt()
Der problematische Code:
public Roster getRoster() {
if (roster == null) {
return null;
}
if (!roster.rosterInitialized) {
try {
synchronized (roster) {
roster.reload();
long waitTime = SmackConfiguration.getPacketReplyTimeout();
long start = System.currentTimeMillis();
while (!roster.rosterInitialized) {
if (waitTime <= 0) {
break;
}
roster.wait(waitTime);
long now = System.currentTimeMillis();
waitTime -= now - start;
start = now;
}
}
}
catch (InterruptedException ie) {
// Ignore.
}
}
return roster;
}
was macht reload()? – Affe
wo nennst du notify – Ronnie