| Modifier and Type | Class and Description |
|---|---|
| public static class |
| Access | Constructor and Description |
|---|---|
| public |
| Modifier and Type | Method and Description |
|---|---|
| public static Object | |
| public static PyObject | |
| public static PyObject | |
| public static PyObject |
| synchronize | back to summary |
|---|---|
| public synchronize() | |
| _getSync | back to summary |
|---|---|
| public static Object _getSync(PyObject obj) | |
| apply_synchronized | back to summary |
|---|---|
| public static PyObject apply_synchronized(PyObject syncObject, PyObject callable, PyObject args) | |
| apply_synchronized | back to summary |
|---|---|
| public static PyObject apply_synchronized(PyObject syncObject, PyObject callable, PyObject args, PyDictionary kws) | |
| make_synchronized | back to summary |
|---|---|
| public static PyObject make_synchronized(PyObject callable) | |
| Modifier and Type | Field and Description |
|---|---|
| pack-priv PyObject |
| Access | Constructor and Description |
|---|---|
| public |
| Modifier and Type | Method and Description |
|---|---|
| public PyObject | __call__()
Overrides org. A variant of the __call__ method with no arguments. |
| public PyObject | __call__(PyObject
the single argument to the function. arg)Overrides org. A variant of the __call__ method with one argument. |
| public PyObject | __call__(PyObject
the first argument to the function. arg1, PyObject the second argument to the function. arg2)Overrides org. A variant of the __call__ method with two arguments. |
| public PyObject | __call__(PyObject
the first argument to the function. arg1, PyObject the second argument to the function. arg2, PyObject the third argument to the function. arg3)Overrides org. A variant of the __call__ method with three arguments. |
| public PyObject | __call__(PyObject[]
all arguments to the function (including keyword arguments). args, String[] the keywords used for all keyword arguments. keywords)Overrides org. The basic method to override when implementing a callable object. |
| public PyObject | __call__(PyObject
the first argument to the function. arg1, PyObject[] the last arguments to the function (including keyword arguments). args, String[] the keywords used for all keyword arguments. keywords)Overrides org. A variant of the __call__ method with one extra initial argument. |
| public PyObject | __get__(PyObject
- the instance accessing this descriptor. Can be null if this is being accessed by
a type. obj, PyObject - the type accessing this descriptor. Will be null if obj exists as obj is of the
type accessing the descriptor. type)Overrides org. Get descriptor for this PyObject. |
| public boolean | |
| public boolean | refersDirectlyTo(PyObject ob)
Implements org. Optional operation. |
| public int | traverse(Visitproc visit, Object arg)
Implements org. Traverses all directly contained |
| callable | back to summary |
|---|---|
| pack-priv PyObject callable | |
| SynchronizedCallable | back to summary |
|---|---|
| public SynchronizedCallable(PyObject callable) | |
| __call__ | back to summary |
|---|---|
| public PyObject __call__() Overrides org. Doc from org. A variant of the __call__ method with no arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg) Overrides org. Doc from org. A variant of the __call__ method with one argument. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg1, PyObject arg2) Overrides org. Doc from org. A variant of the __call__ method with two arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg1, PyObject arg2, PyObject arg3) Overrides org. Doc from org. A variant of the __call__ method with three arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject[] args, String[] keywords) Overrides org. Doc from org. The basic method to override when implementing a callable object. The first len(args)-len(keywords) members of args[] are plain arguments. The last len(keywords) arguments are the values of the keyword arguments.
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg1, PyObject[] args, String[] keywords) Overrides org. Doc from org. A variant of the __call__ method with one extra initial argument. This variant is used to
allow method invocations to be performed efficiently.
The default behavior is to invoke
| |
| __get__ | back to summary |
|---|---|
| public PyObject __get__(PyObject obj, PyObject type) Overrides org. Doc from org. Get descriptor for this PyObject.
- the object defined for this descriptor for the given obj and type. | |
| isCallable | back to summary |
|---|---|
| public boolean isCallable() Overrides org.
| |
| refersDirectlyTo | back to summary |
|---|---|
| public boolean refersDirectlyTo(PyObject ob) Implements org. Doc from org. Optional operation.
Should only be implemented if it is more efficient
than calling
| |
| traverse | back to summary |
|---|---|
| public int traverse(Visitproc visit, Object arg) Implements org. Doc from org. Traverses all directly contained
| |