MemoryApi class
DO NOT EDIT THIS FILE. TO ADJUST THIS CLASS, USE MemoryApiMixin
The final API is constructed by:
- taking the
MemoryApiBase
class - applying a mixin
MemoryApiMixin
] (which allows us to inject other convenience functions) The mixin lives outside of the code generator, so it's used to do any manual tweaking - Applying the
SignalingApiMixin
, so events automatically propagate
- Inheritance
- Implemented types
- Mixed-in types
-
- SignalingApiMixin<
IMemory>
- SignalingApiMixin<
Constructors
- MemoryApi(ApiClient apiClient, ApiRegistry apis)
Properties
Methods
-
clone(
IMemory source) → IMemory -
Copies values from one entity into another. This clone operation is important because it allows
inherited
-
create(
IMemory memory) → Future< IMemory> -
override
-
delete(
String id) → Future< DeleteResponse> -
override
-
initialize(
IMemory entity) → IMemory -
inherited
-
instantiate(
[dynamic json]) → IMemory -
inherited
-
keyToId(
MKey? key) → String? -
inherited
-
list(
{double? limit, double? offset}) → Future< IMemoryList> -
override
-
load(
String id) → Future< IMemory> -
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
takeFrom(
IMemory source, IMemory target) → void -
Copies all data from
source
intotarget
. Used when you want to maintain a reference totarget
, but want to inject new values fromsource
inherited -
toString(
) → String -
A string representation of this object.
inherited
-
update(
String id, IMemory memory) → Future< ChangeResult> -
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited