All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.kubernetes.client.utils.WatcherToggle Maven / Gradle / Ivy

/**
 * Copyright (C) 2015 Red Hat, Inc.
 *
 * 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 io.fabric8.kubernetes.client.utils;

import io.fabric8.kubernetes.client.Watcher;
import io.fabric8.kubernetes.client.WatcherException;

import java.util.Objects;

/**
 * A utility class to enable and disable callbacks to a watcher instance.
 */
public class WatcherToggle implements Watcher {

  private final Watcher delegate;

  private boolean enabled;

  public WatcherToggle(Watcher delegate, boolean enabled) {
    this.delegate = Objects.requireNonNull(delegate, "delegate watcher cannot be null");
    this.enabled = enabled;
  }

  public void disable() {
    this.enabled = false;
  }

  public void enable() {
    this.enabled = true;
  }

  @Override
  public void eventReceived(Action action, T resource) {
    if (enabled) {
      delegate.eventReceived(action, resource);
    }
  }

  @Override
  public void onClose(WatcherException cause) {
    if (enabled) {
      delegate.onClose(cause);
    }
  }

  @Override
  public void onClose() {
    if (enabled) {
      delegate.onClose();
    }
  }

  @Override
  public boolean reconnecting() {
    return delegate.reconnecting();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy