Examples of GroupChange


Examples of com.sleepycat.je.rep.monitor.Protocol.GroupChange

     */
    public void notifyGroupChange(String nodeName, GroupChangeType opType)
        throws DatabaseException {

        RepGroupImpl repGroup = repNode.getGroup();
        GroupChange changeEvent =
            getProtocol(repGroup).new GroupChange(repGroup, nodeName, opType);
        refreshMonitors(repGroup, changeEvent);
    }
View Full Code Here

Examples of com.sleepycat.je.rep.monitor.Protocol.GroupChange

     */
    public void notifyGroupChange(String nodeName, GroupChangeType opType)
        throws DatabaseException {

        RepGroupImpl repGroup = repNode.getGroup();
        GroupChange changeEvent =
            getProtocol(repGroup).new GroupChange(repGroup, nodeName, opType);
        refreshMonitors(repGroup, changeEvent);
    }
View Full Code Here

Examples of cu.ftpd.user.userbases.changetracking.GroupChange

    }

    public void setSlots(int slots, boolean propagate) {
        this.slots = slots;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.Slots, name, slots));
        }
    }
View Full Code Here

Examples of cu.ftpd.user.userbases.changetracking.GroupChange

    }

    public void setLeechSlots(int leechSlots, boolean propagate) {
        this.leechSlots = leechSlots;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.LeechSlots, name, leechSlots));
        }
    }
View Full Code Here

Examples of cu.ftpd.user.userbases.changetracking.GroupChange

    }

    public void setAllotmentSlots(int allotmentSlots, boolean propagate) {
        this.allotmentSlots = allotmentSlots;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.AllotmentSlots, name, allotmentSlots));
        }
    }
View Full Code Here

Examples of cu.ftpd.user.userbases.changetracking.GroupChange

    }

    public void setMaxAllotment(long maxAllotment, boolean propagate) {
        this.maxAllotment = maxAllotment;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.MaxAllotment, name, maxAllotment));
        }
    }
View Full Code Here

Examples of cu.ftpd.user.userbases.changetracking.GroupChange

    }

    public void setDescription(String description, boolean propagate) {
        this.description = description;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.Description, name, description));
        }
    }
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.