ServerAppBinding class

Global component binding for the server

Inheritance
Mixed in types

Constructors

ServerAppBinding()

Properties

currentUri Uri
The currently active uri. On the server, this is the requested uri. On the client, this is the currently visited uri in the browser.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
isClient bool
Whether the current app is run on the client (in the browser)
no setteroverride
isLoadingState bool
no setterinherited
options JasprOptions
no setter
rootCompleter Completer
final
rootElement RenderObjectElement?
The Element that is at the root of the hierarchy.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
schedulerPhase SchedulerPhase
no setterinherited

Methods

addPostFrameCallback(VoidCallback callback) → void
inherited
addRenderAdapter(RenderAdapter adapter) → void
attachRootComponent(Component app) Future<void>
Sets app as the new root of the component tree and performs an initial build
override
createRootBuildOwner() BuildOwner
override
createRootRenderObject() RenderObject
override
data() Future<String>
didAttachRootElement(Element element) → void
override
fetchState(String url) Future<Map<String, String>>
On the client, this should perform a http request to url to fetch state data from the server.
override
getInitialState<T>(String id, {Codec<T, dynamic>? codec}) → T?
inherited
getRawState(String id) → dynamic
Must return the serialized state data associated with id. On the client this is the data that is synced from the server.
override
getStateData() Map<String, dynamic>
Returns the accumulated data from all active States that use the SyncStateMixin
inherited
initializeOptions(JasprOptions options) → void
loadFile(String name) Future<String?>
loadState(String path) Future<void>
Loads state from the server and and notifies elements. This is called when a LazyRoute is loaded.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
registerSyncState(SyncState syncState, {bool initialUpdate = true}) → void
inherited
render() Future<String>
scheduleBuild(VoidCallback buildCallback) → void
Schedules a build and ultimately calls handleFrame with the provided buildCallback
inherited
scheduleFrame(VoidCallback frameCallback) → void
Schedules a frame with the provided frameCallback
override
setCurrentUri(Uri uri) → void
setFileHandler(Future<String?> handler(String)) → void
toString() String
A string representation of this object.
inherited
unregisterSyncState(SyncState syncState) → void
inherited
updateRawState(String id, dynamic state) → void
Must update the serialized state data associated with id. This is called on the client when new data is loaded for a LazyRoute.
override

Operators

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