KoreInstance<T> mixin

Base mixin for kore instance

Contains basic interface for init and disposeInstance operations Also every kore instance connected to main app event bus

Superclass constraints
Mixin applications

Properties

allPartsReady Observable<bool>
Observable indicating that all parts are connected to this instance
final
configuration KoreInstanceConfiguration
KoreInstanceConfiguration for this instance
no setter
disposeOperations List<Function>
List of operations that will be executed with dispose call
final
hashCode int
The hash code for this object.
no setterinherited
initializationCompleter Completer
final
input ↔ T
Input for this instance
latefinal
isAsync bool
Getter that returns true if instance contains async parts or require async initialization
no setter
isDisposed bool
Flag indicating that this instance is disposed
getter/setter pair
isInitialized bool
Flag indicating that this instance is fully initialized
getter/setter pair
isPaused bool
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

checkEventWasReceived(Type event, {int? count}) bool
Returns true if underlying events list contains given event name
inherited
cleanupReceivedEvents() → void
Cleans collection of received events
inherited
disposeEventBusSubscription() → void
Closes underlying stream subscription for EventBus
inherited
disposeInstance() → void
Base method for instance dispose
ensureInitialized<O>(Future<O> block()) Future<O>
Helper function that runs given block after async initialization is completed.
getFullPartConnectorsList() List<PartConnector>
Returns list of parts
initialize(T input) → void
Base method for instance initialization
initializeAsync() Future<void>
Base method for async instance initialization.
initializeEventBusSubscription() → void
inherited
initializeInstanceParts() → void
Adds parts to local collection
initializeInstancePartsAsync() Future<void>
Adds parts to local collection
initializeWithoutConnections(T input) → void
Base method for lightweight instance initialization
initializeWithoutConnectionsAsync() Future<void>
Base method for lightweight async instance initialization
markInitialized() → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
on<T>(EventBusSubscriber<T> processor, {bool reactsToPause = false, bool firesAfterResume = true}) EventBusSubscriber
Subscribes to event of given type
inherited
onAllPartReady() → void
Runs for every async part when it is initialized
onAsyncPartReady(Type type, int? index) → void
Runs for every async part when it is initialized
pauseEventBusSubscription() → void
Sets paused flag to false so events stop processing
override
resumeEventBusSubscription({bool sendAllEventsReceivedWhilePause = true}) → void
Resumes events processing
override
subscribe() → void
Map of EventBus events and function to be executed for this events
inherited
toString() String
A string representation of this object.
inherited
useInstancePart<InstancePartType extends BaseInstancePart<dynamic, KoreInstance>>({int index = 0}) → InstancePartType
Returns initialized instance part for given type
waitTillEventIsReceived(Type event, {int? count, Duration timeout = const Duration(seconds: 1)}) Future<void>
Waits till given event is received by this instance
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited