* Create a RemoteObject containing a handle to reference obj * * @param {Any} obj - The object to reference.
(obj)
| 710 | * @param {Any} obj - The object to reference. |
| 711 | */ |
| 712 | static from(obj) { |
| 713 | let type = typeName(obj); |
| 714 | let id = remoteId(obj); |
| 715 | return new RemoteObject(type, id); |
| 716 | } |
| 717 | |
| 718 | /** |
| 719 | * Return the local object referenced by the ``objectId`` of |