Uses of Class
com.couchbase.client.core.state.LifecycleState
Package | Description |
---|---|
com.couchbase.client.core |
Couchbase Core IO - Domain Model and Architecture
=================================================
This documentation describes the domain model of the core package, covers important architecture and design
decisions and provides a solid introduction on the inner workings.
|
com.couchbase.client.core.endpoint | |
com.couchbase.client.core.message.internal | |
com.couchbase.client.core.node | |
com.couchbase.client.core.service | |
com.couchbase.client.core.state |
-
Uses of LifecycleState in com.couchbase.client.core
Methods in com.couchbase.client.core that return types with arguments of type LifecycleState Modifier and Type Method Description rx.Observable<LifecycleState>
RequestHandler. addNode(String hostname, String alternate)
Add aNode
identified by its hostname.rx.Observable<LifecycleState>
RequestHandler. removeNode(String hostname)
Remove aNode
identified by its hostname. -
Uses of LifecycleState in com.couchbase.client.core.endpoint
Methods in com.couchbase.client.core.endpoint that return types with arguments of type LifecycleState Modifier and Type Method Description rx.Observable<LifecycleState>
AbstractEndpoint. connect()
protected rx.Observable<LifecycleState>
AbstractEndpoint. connect(boolean bootstrapping)
An internal alternative toAbstractEndpoint.connect()
where signalling that this is post-bootstrapping can be done.rx.Observable<LifecycleState>
Endpoint. connect()
Connect theEndpoint
to the underlying channel.rx.Observable<LifecycleState>
AbstractEndpoint. disconnect()
rx.Observable<LifecycleState>
Endpoint. disconnect()
Disconnect theEndpoint
from the underlying channel.Method parameters in com.couchbase.client.core.endpoint with type arguments of type LifecycleState Modifier and Type Method Description protected void
AbstractEndpoint. doConnect(rx.subjects.Subject<LifecycleState,LifecycleState> observable, boolean bootstrapping)
Helper method to perform the actual connect and reconnect.protected void
AbstractEndpoint. doConnect(rx.subjects.Subject<LifecycleState,LifecycleState> observable, boolean bootstrapping)
Helper method to perform the actual connect and reconnect. -
Uses of LifecycleState in com.couchbase.client.core.message.internal
Methods in com.couchbase.client.core.message.internal that return LifecycleState Modifier and Type Method Description LifecycleState
EndpointHealth. state()
Constructors in com.couchbase.client.core.message.internal with parameters of type LifecycleState Constructor Description EndpointHealth(ServiceType type, LifecycleState state, SocketAddress localAddr, SocketAddress remoteAddr, long lastActivityUs, String id)
-
Uses of LifecycleState in com.couchbase.client.core.node
Methods in com.couchbase.client.core.node that return LifecycleState Modifier and Type Method Description protected LifecycleState
ServiceStateZipper. zipWith(Collection<LifecycleState> states)
Methods in com.couchbase.client.core.node that return types with arguments of type LifecycleState Modifier and Type Method Description rx.Observable<LifecycleState>
CouchbaseNode. connect()
rx.Observable<LifecycleState>
Node. connect()
Connects all currently enabledService
s.rx.Observable<LifecycleState>
CouchbaseNode. disconnect()
rx.Observable<LifecycleState>
Node. disconnect()
Disconnects all currently enabledService
s.Method parameters in com.couchbase.client.core.node with type arguments of type LifecycleState Modifier and Type Method Description protected LifecycleState
ServiceStateZipper. zipWith(Collection<LifecycleState> states)
Constructors in com.couchbase.client.core.node with parameters of type LifecycleState Constructor Description ServiceStateZipper(LifecycleState initial)
-
Uses of LifecycleState in com.couchbase.client.core.service
Methods in com.couchbase.client.core.service that return LifecycleState Modifier and Type Method Description protected LifecycleState
EndpointStateZipper. zipWith(Collection<LifecycleState> states)
Methods in com.couchbase.client.core.service that return types with arguments of type LifecycleState Modifier and Type Method Description rx.Observable<LifecycleState>
AbstractDynamicService. connect()
rx.Observable<LifecycleState>
PooledService. connect()
rx.Observable<LifecycleState>
Service. connect()
rx.Observable<LifecycleState>
AbstractDynamicService. disconnect()
rx.Observable<LifecycleState>
AbstractOnDemandService. disconnect()
rx.Observable<LifecycleState>
PooledService. disconnect()
rx.Observable<LifecycleState>
Service. disconnect()
Methods in com.couchbase.client.core.service with parameters of type LifecycleState Modifier and Type Method Description protected static void
AbstractDynamicService. whenState(Endpoint endpoint, LifecycleState wanted, rx.functions.Action1<LifecycleState> then)
Waits until the endpoint goes into the given state, calls the action and then unsubscribes.Method parameters in com.couchbase.client.core.service with type arguments of type LifecycleState Modifier and Type Method Description protected static void
AbstractDynamicService. whenState(Endpoint endpoint, LifecycleState wanted, rx.functions.Action1<LifecycleState> then)
Waits until the endpoint goes into the given state, calls the action and then unsubscribes.protected LifecycleState
EndpointStateZipper. zipWith(Collection<LifecycleState> states)
Constructors in com.couchbase.client.core.service with parameters of type LifecycleState Constructor Description EndpointStateZipper(LifecycleState initial)
-
Uses of LifecycleState in com.couchbase.client.core.state
Methods in com.couchbase.client.core.state that return LifecycleState Modifier and Type Method Description static LifecycleState
LifecycleState. valueOf(String name)
Returns the enum constant of this type with the specified name.static LifecycleState[]
LifecycleState. values()
Returns an array containing the constants of this enum type, in the order they are declared.