UNPKG

hazelcast-client

Version:

Hazelcast - open source In-Memory Data Grid - client for NodeJS

15 lines 408 B
"use strict"; var UUIDCodec = (function () { function UUIDCodec() { } UUIDCodec.decode = function (clientMessage, toObject) { var uuid = { 'mostSignificant': clientMessage.readLong(), 'leastSignificant': clientMessage.readLong() }; return uuid; }; return UUIDCodec; }()); exports.UUIDCodec = UUIDCodec; //# sourceMappingURL=UUIDCodec.js.map