Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

I have quite a complex capability, with some collections. I thought that it would be too troublesome to create network messages for every operation I make, so I instead used the storage class to serialize the whole capability class and send it to the client. I then added some methods on the capability class to replace the references in the fields with the ones from the deserialized class. The performance loss is insignificant, as I will rarely be using it.

Is there anything I should be concerned about? 

You should only send the data which has changed.
You could create a message that uses a Collection as parameter,
if you then change the data of a collection, you can send this message with the new Collection to the client

Note: you also need a parameter that defies which Collection is to be synchronized on the Client (a String or an int are recommended)

Edited by Luis_ST

  • Author
14 minutes ago, Luis_ST said:

You should only send the data which has changed.
You could create a message that uses a Collection as parameter,
if you then change the data of a collection, you can send this message with the new Collection to the client

Note: you also need a parameter that defies which Collection is to be synchronized on the Client (a String or an int are recommended)

By collections, I mean maps of lists and such. Syncing will be a pain. If there is no immediate issue other than a little performance loss, I will just keep it like that until i do a refactoring and cleanup session on the code.

5 minutes ago, matthew123 said:

By collections, I mean maps of lists and such.

then you need to create two messaages, also Lists are an instance of Collection

5 minutes ago, matthew123 said:

If there is no immediate issue other than a little performance loss

if you don't sync the data very often, that shouldn't be a problem

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.