Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/modules/clusters/pages/ucn-dynamic-client.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class Client {
<2> Adds the defined class from the classpath to the `UserCodeNamespaceConfig`
<3> Creates a new `MapConfig` for the map named `map_name`
<4> Associated the User Code Namespace `namespace_name` with this `MapConfig`
<5> Applies our new `UserCodeNamespaceConfig` to the cluster - this must be done before applying any data structure configuration that references this Namespace
<5> Applies our new `UserCodeNamespaceConfig` to the cluster. It uploads the resources as configured to the cluster (class, jar, zip) - this must be done before applying any data structure configuration that references this Namespace
<6> Applies our new `MapConfig` to the cluster
<7> Executes `IncrementingEntryProcessor` from the classpath on the key in our map

Expand Down Expand Up @@ -93,4 +93,4 @@ public class Client {
<1> Creates a `UserCodeNamespaceConfig` with a name of `namespace_name`
<2> Adds the defined class from the classpath to the `UserCodeNamespaceConfig`
<3> Gets the Hazelcast configuration from the client instance and adds the `UserCodeNamespaceConfig` to the `Config`, overwriting the existing config
<4> Executes `IncrementingEntryProcessor` from the classpath on the key in an IMap that has been configured to use the same Namespace
<4> Executes the newly uploaded possibly changed `IncrementingEntryProcessor` from the classpath on the key in an IMap that has been configured to use the same Namespace
Loading