2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 23:06:37 +00:00

42_npmjs: correct Perl namespace

git-svn-id: https://svn.fhem.de/fhem/trunk@18447 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2019-01-29 12:59:23 +00:00
parent e28c841a52
commit e74a2483b2

View File

@ -14,12 +14,12 @@ sub npmjs_Initialize($) {
my ($hash) = @_;
$hash->{SetFn} = "FHEM::npmjs::Set";
$hash->{GetFn} = "FHEM::npmjs::Get";
$hash->{DefFn} = "FHEM::npmjs::Define";
$hash->{NotifyFn} = "FHEM::npmjs::Notify";
$hash->{UndefFn} = "FHEM::npmjs::Undef";
$hash->{AttrFn} = "FHEM::npmjs::Attr";
$hash->{SetFn} = "npmjs::Set";
$hash->{GetFn} = "npmjs::Get";
$hash->{DefFn} = "npmjs::Define";
$hash->{NotifyFn} = "npmjs::Notify";
$hash->{UndefFn} = "npmjs::Undef";
$hash->{AttrFn} = "npmjs::Attr";
$hash->{AttrList} =
"disable:1,0 "
. "disabledForIntervals "
@ -34,7 +34,7 @@ sub npmjs_Initialize($) {
}
# define package
package FHEM::npmjs;
package npmjs;
use strict;
use warnings;
@ -323,7 +323,7 @@ sub ProcessUpdateTimer($) {
RemoveInternalTimer($hash);
InternalTimer(
gettimeofday() + 14400,
"FHEM::npmjs::ProcessUpdateTimer",
"npmjs::ProcessUpdateTimer",
$hash, 0
);
Log3 $name, 4, "npmjs ($name) - stateRequestTimer: Call Request Timer";
@ -399,7 +399,7 @@ sub AsynchronousExecuteNpmCommand($) {
$hash->{".fhem"}{subprocess} = $subprocess;
InternalTimer( gettimeofday() + POLLINTERVAL,
"FHEM::npmjs::PollChild", $hash, 0 );
"npmjs::PollChild", $hash, 0 );
Log3 $hash, 4, "npmjs ($name) - control passed back to main loop.";
}
@ -415,7 +415,7 @@ sub PollChild($) {
Log3 $name, 5,
"npmjs ($name) - still waiting (" . $subprocess->{lasterror} . ").";
InternalTimer( gettimeofday() + POLLINTERVAL,
"FHEM::npmjs::PollChild", $hash, 0 );
"npmjs::PollChild", $hash, 0 );
return;
}
else {