Subversion Repositories HomeAutomation

Rev

Rev 1299 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1299 Rev 1402
Line 41... Line 41...
41
    if (service != null)
41
    if (service != null)
42
    {
42
    {
43
        service.initialize(args);
43
        service.initialize(args);
44
    }
44
    }
45
}
45
}
-
 
46
 
-
 
47
ServiceManager.numServices = function()
-
 
48
{
-
 
49
    return ServiceManager.Services.length;
-
 
50
}
-
 
51
 
-
 
52
ServiceManager.numCallbacks = function()
-
 
53
{
-
 
54
        return ServiceManager.Callbacks.length;
-
 
55
}
-
 
56