![JAR search and dependency download from the Maven repository](/logo.png)
org.microbean.kubernetes.controller.EventCache Maven / Gradle / Ivy
/* -*- mode: Java; c-basic-offset: 2; indent-tabs-mode: nil; coding: utf-8-unix -*-
*
* Copyright © 2017-2018 microBean.
*
* 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 org.microbean.kubernetes.controller;
import java.util.Collection;
import io.fabric8.kubernetes.api.model.HasMetadata;
/**
* A minimalistic interface indicating that its implementations cache
* {@link Event}s representing Kubernetes resources.
*
* Thread Safety
*
* Instances of implementations of this interface must be
* safe for concurrent usage by multiple {@link Thread}s.
*
* @param a type of Kubernetes resource
*
* @author Laird Nelson
*
* @see Event
*
* @see EventQueueCollection
*/
public interface EventCache {
/**
* Adds a new {@link Event} constructed out of the parameters
* supplied to this method to this {@link EventCache} implementation
* and returns the {@link Event} that was added.
*
* Implementations of this method may return {@code null} to
* indicate that for whatever reason no {@link Event} was actually
* added.
*
* @param source the {@linkplain Event#getSource() source} of the
* {@link Event} that will be created and added; must not be {@code
* null}
*
* @param eventType the {@linkplain Event#getType() type} of {@link
* Event} that will be created and added; must not be {@code null}
*
* @param resource the {@linkplain Event#getResource() resource} of
* the {@link Event} that will be created and added must not be
* {@code null}
*
* @return the {@link Event} that was created and added, or {@code
* null} if no {@link Event} was actually added as a result of this
* method's invocation
*
* @exception NullPointerException if any of the parameters is
* {@code null}
*
* @see Event
*/
public Event add(final Object source, final Event.Type eventType, final T resource);
/**
* A "full replace" operation that atomically replaces all internal
* state with new state derived from the supplied {@link Collection}
* of resources.
*
* @param incomingResources the resources comprising the new state;
* must not be {@code null}; must be synchronized
* on when accessing
*
* @param resourceVersion the notional version of the supplied
* {@link Collection}; may be {@code null}; often ignored by
* implementations
*
* @exception NullPointerException if {@code incomingResources} is
* {@code null}
*/
public void replace(final Collection extends T> incomingResources, final Object resourceVersion);
/**
* Synchronizes this {@link EventCache} implementation's state with
* its downstream consumers, if any.
*
* Not all {@link EventCache} implementations need support
* synchronization. An implementation of this method that does
* nothing is explicitly permitted.
*
* Implementations of this method must expect to be called on a
* fixed schedule.
* Design Notes
*
* This method emulates the {@code
* Resync} function in the Go code's {@code DeltaFifo} construct
* Specifically, it is anticipated that an implementation of this
* method that does not simply return will go through the internal
* resources that this {@link EventCache} knows about, and, for each
* that does not have an event queue set up for it
* already—i.e. for each that is not currently being
* processed— will fire a {@link SynchronizationEvent}. This
* will have the effect of "heartbeating" the current desired state
* of the system "downstream" to processors that may wish to alter
* the actual state of the system to conform to it.
*
* @see SynchronizationEvent
*/
public void synchronize();
}