Package org.apache.bookkeeper.client.AsyncCallback

Examples of org.apache.bookkeeper.client.AsyncCallback.DeleteCallback


        if (null == ledger) {
            deleteLedgersAndUpdateLedgersRange(topic, ledgersToDelete, ledgersDeleted);
            return;
        }

        bk.asyncDeleteLedger(ledger, new DeleteCallback() {
            @Override
            public void deleteComplete(int rc, Object ctx) {
                if (BKException.Code.NoSuchLedgerExistsException == rc ||
                    BKException.Code.OK == rc) {
                    ledgersDeleted.add(ledger);
View Full Code Here

TOP

Related Classes of org.apache.bookkeeper.client.AsyncCallback.DeleteCallback

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.