Struct kube::runtime::Reflector[][src]

pub struct Reflector<K> where
    K: Clone + DeserializeOwned + Send + Meta
{ /* fields omitted */ }
Expand description

A reflection of Resource state in kubernetes

This watches and caches a Resource<K> by:

  • seeding the cache from a large initial list call
  • keeping track of initial, and subsequent resourceVersions
  • recovering when resourceVersions get desynced

It exposes it’s internal state readably through a getter.

Implementations

impl<K> Reflector<K> where
    K: Clone + DeserializeOwned + Meta + Send
[src]

pub fn new(client: APIClient, lp: ListParams, r: Resource) -> Self[src]

Create a reflector with a kube client on a resource

pub async fn init(self) -> Result<Self>[src]

Initializes with a full list of data from a large initial LIST call

pub async fn poll(&self) -> Result<()>[src]

Run a single watch poll

If this returns an error, it tries a full refresh. This is meant to be run continually in a thread/task. Spawn one.

pub async fn state(&self) -> Result<Vec<K>>[src]

Read data for users of the reflector

This is instant if you are reading and writing from the same context.

pub fn get(&self, name: &str) -> Result<Option<K>>[src]

Read a single entry by name

Will read in the configured namsepace, or globally on non-namespaced reflectors. If you are using a non-namespaced resources with name clashes, Try Reflector::get_within instead.

pub fn get_within(&self, name: &str, ns: &str) -> Result<Option<K>>[src]

Read a single entry by name within a specific namespace

This is a more specific version of Reflector::get. This is only useful if your reflector is configured to poll across namsepaces.

pub async fn reset(&self) -> Result<()>[src]

Reset the state with a full LIST call

Same as what is done in State::new.

Trait Implementations

impl<K: Clone> Clone for Reflector<K> where
    K: Clone + DeserializeOwned + Send + Meta
[src]

fn clone(&self) -> Reflector<K>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<K> !RefUnwindSafe for Reflector<K>

impl<K> Send for Reflector<K>

impl<K> Sync for Reflector<K>

impl<K> Unpin for Reflector<K>

impl<K> !UnwindSafe for Reflector<K>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.