Examples of CookieFormat


Examples of org.apache.bookkeeper.proto.DataFormats.CookieFormat

            c.journalDir = reader.readLine();
            c.ledgerDirs = reader.readLine();
        } else if (c.layoutVersion >= 4) {
            CookieFormat.Builder builder = CookieFormat.newBuilder();
            TextFormat.merge(reader, builder);
            CookieFormat data = builder.build();
            c.bookieHost = data.getBookieHost();
            c.journalDir = data.getJournalDir();
            c.ledgerDirs = data.getLedgerDirs();
            // Since InstanceId is optional
            if (null != data.getInstanceId() && !data.getInstanceId().isEmpty()) {
                c.instanceId = data.getInstanceId();
            }
        }
        return c;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.