Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Classes
Class List
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Properties
b
c
f
h
n
t
u
v
+
Files
File List
OpenRTM_aist
Singleton.py
Go to the documentation of this file.
1
#/usr/bin/env python
2
# -*- coding: euc-jp -*-
3
4
18
19
import
thread
20
21
31
class
Singleton
(object):
32
__lockObj = thread.allocate_lock()
33
__instance =
None
34
35
def
__new__
(self, *args, **kargs):
36
return
self.
instance
(*args, **kargs)
37
38
39
def
__init__
(self, *args, **kargs):
40
self.
instance
(*args, **kargs)
41
42
43
def
instance
(self, *args, **kargs):
44
self.
__lockObj
.acquire()
45
try
:
46
if
self.
__instance
is
None
:
47
self.
__instance
= object.__new__(self, *args, **kargs)
48
49
finally
:
50
self.
__lockObj
.release()
51
52
return
self.
__instance
53
54
instance = classmethod(instance)
55
OpenRTM_aist.Singleton.Singleton.instance
instance
Definition:
Singleton.py:54
OpenRTM_aist.Singleton.Singleton.__lockObj
__lockObj
Definition:
Singleton.py:32
OpenRTM_aist.Singleton.Singleton
Definition:
Singleton.py:31
OpenRTM_aist.Singleton.Singleton.__new__
def __new__(self, args, kargs)
Definition:
Singleton.py:35
OpenRTM_aist.Singleton.Singleton.__init__
def __init__(self, args, kargs)
Definition:
Singleton.py:39
OpenRTM_aist.Singleton.Singleton.__instance
__instance
Definition:
Singleton.py:33
openrtm_aist_python
Author(s): Shinji Kurihara
autogenerated on Mon Feb 28 2022 23:01:06