Returns a unique tag for the object. This method is used by the router.
[Source]
# File lib/serverside/core_ext.rb, line 86 86: def const_tag 87: 'C' + object_id.to_s(36).upcase.sub('-', '_') 88: end
[Validate]