Java Code Examples for io.vlingo.actors.World#registerDynamic()
The following examples show how to use
io.vlingo.actors.World#registerDynamic() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StateAdapterProvider.java From vlingo-symbio with Mozilla Public License 2.0 | 4 votes |
public StateAdapterProvider(final World world) { this(); world.registerDynamic(INTERNAL_NAME, this); }
Example 2
Source File: EntryAdapterProvider.java From vlingo-symbio with Mozilla Public License 2.0 | 4 votes |
public EntryAdapterProvider(final World world) { this(); world.registerDynamic(INTERNAL_NAME, this); }
Example 3
Source File: SourcedTypeRegistry.java From vlingo-lattice with Mozilla Public License 2.0 | 2 votes |
/** * Construct my default state and register me with the {@code world}. * @param world the World to which I am registered */ public SourcedTypeRegistry(final World world) { world.registerDynamic(INTERNAL_NAME, this); }
Example 4
Source File: StatefulTypeRegistry.java From vlingo-lattice with Mozilla Public License 2.0 | 2 votes |
/** * Construct my default state and register it with the {@code world}. * @param world the World to which I am registered */ public StatefulTypeRegistry(final World world) { world.registerDynamic(INTERNAL_NAME, this); }
Example 5
Source File: ProcessTypeRegistry.java From vlingo-lattice with Mozilla Public License 2.0 | 2 votes |
/** * Construct my default state and register me with the {@code world}. * @param world the World to which I am registered */ public ProcessTypeRegistry(final World world) { world.registerDynamic(INTERNAL_NAME, this); }
Example 6
Source File: ObjectTypeRegistry.java From vlingo-lattice with Mozilla Public License 2.0 | 2 votes |
/** * Construct my default state and register me with the {@code world}. * @param world the World to which I am registered */ public ObjectTypeRegistry(final World world) { world.registerDynamic(INTERNAL_NAME, this); }