Dop Versions Save

JavaScript implementation for Distributed Object Protocol

1.4.0

3 years ago
  • Naming Function to Rpc
  • createRemoteFunctionFilter is now rpcFilter
  • We do not store RPC created from the other side
  • Fixed bug generating id for local functions
  • Implemented registerRpc & createRpc

1.3.0

3 years ago
  • Bug fixed when throwing Error as RPC
  • max_remote_functions as fn filter, createRemoteFunctionFilter

1.0.2

4 years ago

Reject an RPC as 0 is converted to null

1.0.1

4 years ago

addType

1.0.0

4 years ago

Completely new rewrite of the API and the Protocol

0.41.0

5 years ago

0.40.0

5 years ago

We change from

const observer = dop.createObserver(m=>{ ... })
observer.observe(object, 'property')
observer.observe(object)

To

const observer = dop.createObserver(m=>{ ... })
observer.observeProperty(object, 'property')
observer.observeObject(object)

Also implemented observer.observeAll(object)

0.30.0

5 years ago

0.28.0

5 years ago

Added delete as undefined and undefined is just a special type

0.27.0

5 years ago
  • Bug fixed when unsubscribe and resubscribe same object
  • Allowing registrable Classes