Package | Description |
---|---|
org.bytedeco.javacpp |
Contains the main set of classes for JavaCPP at runtime.
|
Modifier and Type | Field and Description |
---|---|
(package private) static ThreadLocal<Deque<PointerScope>> |
PointerScope.scopeStack
A thread-local stack of
PointerScope objects. |
Modifier and Type | Method and Description |
---|---|
PointerScope |
PointerScope.attach(Pointer p)
Pushes the Pointer onto the
pointerStack of this Scope and calls Pointer.retainReference() . |
PointerScope |
PointerScope.detach(Pointer p)
Removes the Pointer from the
pointerStack of this Scope
and calls Pointer.releaseReference() . |
PointerScope |
PointerScope.extend()
|
static PointerScope |
PointerScope.getInnerScope()
Returns
scopeStack.get().peek() , the last opened scope not yet closed. |
Modifier and Type | Method and Description |
---|---|
static Iterator<PointerScope> |
PointerScope.getScopeIterator()
Returns
scopeStack.get().iterator() , all scopes not yet closed. |
Copyright © 2020. All rights reserved.