Sha256: b98485f985e3e0c897b79df91cd5312adfb29ea60e8d58b1f4481c33599f55d0
Contents?: true
Size: 307 Bytes
Versions: 3
Compression:
Stored size: 307 Bytes
Contents
module Aggro module Message # Public: Unknown operation message. class UnknownOperation TYPE_CODE = '04'.freeze def self.parse(_string) new end def self.new @singleton ||= super end def to_s "#{TYPE_CODE}" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
aggro-0.0.4 | lib/aggro/message/unknown_operation.rb |
aggro-0.0.3 | lib/aggro/message/unknown_operation.rb |
aggro-0.0.2 | lib/aggro/message/unknown_operation.rb |