- or download this
$next_emitter = $current_emitter->transition();
print $next_emitter->emit() . "\n";
- or download this
Can't locate object method "emit" via package
"Emitter=HASH(0x1016c9c0)" (perhaps you forgot to load
"Emitter=HASH(0x1016c9c0)"?) at HMM/ODCRollGenerator.pm line
100.
- or download this
ref($an_emitter->transition());
- or download this
ref($an_emitter)
- or download this
sub transitions
{
...
}
return $self->{TRANSITIONS};
}
- or download this
$self->{START} = Emitter->new();
$self->{FAIR} = Emitter->new();
...
...
$self->{START}->transitions( { $self->{FAIR} => 0.5,
$self->{LOADED} => 0.5 } );