Package com.netflix.exhibitor.core.activity

Examples of com.netflix.exhibitor.core.activity.Activity


    private final Exhibitor exhibitor;

    public CleanupManager(final Exhibitor exhibitor)
    {
        this.exhibitor = exhibitor;
        final Activity activity = new Activity()
        {
            @Override
            public void completed(boolean wasSuccessful)
            {
                // NOP
View Full Code Here


    private static final int    DOWN_RECHECK_FACTOR = 10;

    public MonitorRunningInstance(Exhibitor exhibitor)
    {
        this.exhibitor = exhibitor;
        Activity activity = new Activity()
        {
            @Override
            public void completed(boolean wasSuccessful)
            {
                // NOP
View Full Code Here

    public BackupManager(final Exhibitor exhibitor, BackupProvider backupProvider)
    {
        this.exhibitor = exhibitor;
        this.backupProvider = Optional.fromNullable(backupProvider);

        final Activity activity = new Activity()
        {
            @Override
            public void completed(boolean wasSuccessful)
            {
            }
View Full Code Here

    {
        this.exhibitor = exhibitor;
        this.provider = provider;
        this.maxAttempts = maxAttempts;

        Activity    activity = new Activity()
        {
            @Override
            public void completed(boolean wasSuccessful)
            {
            }
View Full Code Here

TOP

Related Classes of com.netflix.exhibitor.core.activity.Activity

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.