pub type CellStatusFilter = CellStatus;
Expand description

Declarative filter for CellStatus

Aliased Type§

enum CellStatusFilter {
    Joined,
    PendingJoin(PendingJoinReason),
    Joining,
}

Variants§

§

Joined

Kitsune knows about this Cell and it is considered fully “online”

§

PendingJoin(PendingJoinReason)

The Cell is on its way to being fully joined. It is a valid Cell from the perspective of the conductor, and can handle HolochainP2pEvents, but it is considered not to be fully running from the perspective of app status, i.e. if any app has a required Cell with this status, the app is considered to be in the Paused state.

§

Joining

The Cell is currently in the process of trying to join the network.