Xen::Domain - xen domain representing object


Xen-Control documentation  | view source Contained in the Xen-Control distribution.

Index


NAME

Top

Xen::Domain - xen domain representing object

SYNOPSIS

Top

    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

Top

Object module representing Xen domain.

PROPERTIES

Top

    name
    id
    mem
    vcpus
    state
    times

METHODS

Top

new()

Object constructor.

AUTHOR

Top

Jozef Kutej


Xen-Control documentation  | view source Contained in the Xen-Control distribution.