You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current data generator is simplistic and is just a proof of concept that the exporter works.
Will need to add the correct one in.
Data generation criteria:
3 node cluster (forces remote IActorRef serialization this way) all launched inside same process.
Should launch ~100 remembered entities
Each entity should store:
Primitive types - string, int - and these should be tagged using an IWriteEventAdapter
Custom types serialized using the default object serializer (i.e. Hyperion or Newtonsoft - doesn’t matter); these also need to be tagged, but inside the actor application code itself (i.e. literally wrapping the message in a Tagged object before calling Persist)
Custom types serialized using a custom serializer - these should also be tagged via either an adapter or inside the actor class.
Tags
Some message types must have only a single tag (edge case)
Some should have no tags
Some should have more than 1 tag
All of the above scenarios need to be exercised.
The text was updated successfully, but these errors were encountered:
The current data generator is simplistic and is just a proof of concept that the exporter works.
Will need to add the correct one in.
Data generation criteria:
IActorRef
serialization this way) all launched inside same process.string
,int
- and these should be tagged using anIWriteEventAdapter
object
serializer (i.e. Hyperion or Newtonsoft - doesn’t matter); these also need to be tagged, but inside the actor application code itself (i.e. literally wrapping the message in aTagged
object before callingPersist
)The text was updated successfully, but these errors were encountered: