1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-12-08 06:01:07 +01:00

Add Roster.addSubscribeListener()

Remove unnecessary 'Unsubscribe' case in Roster: It is not required to
acknowledge these.
This commit is contained in:
Florian Schmaus 2015-05-21 20:12:39 +02:00
parent 8db0403138
commit 2365c4c208
6 changed files with 296 additions and 33 deletions

View file

@ -0,0 +1,32 @@
/**
*
* Copyright 2015 Florian Schmaus
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.igniterealtime.smack.inttest.util;
public class SimpleResultSyncPoint extends ResultSyncPoint<Boolean, Exception> {
public void signal() {
signal(Boolean.TRUE);
}
public void signalFailure() {
signalFailure("Unspecified failure");
}
public void signalFailure(String failureMessage) {
signal(new Exception(failureMessage));
}
}