The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Xen::Domain - xen domain representing object

SYNOPSIS

    my $domain = Xen::Domain->new(
        'name'  => 'lenny',
        'id'    => 1,
        'mem'   => 256,
        'vcpus' => 2,
        'state' => '-b----',
        'times' => 11.5,
    );
    
    print $domain->name, ' uses ', $domain->mem, 'MB of memory.', "\n";

DESCRIPTION

Object module representing Xen domain.

PROPERTIES

    name
    id
    mem
    vcpus
    state
    times

METHODS

new()

Object constructor.

AUTHOR

Jozef Kutej