The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Event_RPC_Test2;

use strict;

sub get_data			{ shift->{data}				}
sub set_data			{ shift->{data}			= $_[1]	}

sub new {
    my $class = shift;
    my ($data) = @_;
    
    return bless {
        data    => $data,
    }, $class;
}

sub get_object_copy {
    my $self = shift;
    return $self;
}

1;