class Syskit::DRoby::V5::TypelibTypeDumper::DRoby

Marshalling representation of a typelib value

Attributes

byte_array[R]
type[R]

Public Class Methods

new(byte_array, type) click to toggle source
# File lib/syskit/droby/v5/droby_dump.rb, line 125
def initialize(byte_array, type)
    @byte_array, @type = byte_array, type
end

Public Instance Methods

proxy(peer) click to toggle source
# File lib/syskit/droby/v5/droby_dump.rb, line 128
def proxy(peer)
    peer.local_object(type).from_buffer(byte_array)
end