本文整理匯總了Java中com.esotericsoftware.kryo.util.UnsafeUtil類的典型用法代碼示例。如果您正苦於以下問題:Java UnsafeUtil類的具體用法?Java UnsafeUtil怎麽用?Java UnsafeUtil使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
UnsafeUtil類屬於com.esotericsoftware.kryo.util包,在下文中一共展示了UnsafeUtil類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: release
import com.esotericsoftware.kryo.util.UnsafeUtil; //導入依賴的package包/類
/** Releases a direct buffer. {@link #setBuffer(ByteBuffer)} must be called before any write operations can be performed. */
public void release () {
close();
UnsafeUtil.releaseBuffer(niobuffer);
niobuffer = null;
}
示例2: release
import com.esotericsoftware.kryo.util.UnsafeUtil; //導入依賴的package包/類
/** Release a direct buffer. {@link #setBuffer(ByteBuffer, int)} should be called before next write operations can be called.
*
* NOTE: If Cleaner is not accessible due to SecurityManager restrictions, reflection could be used to obtain the "clean"
* method and then invoke it. */
public void release () {
clear();
UnsafeUtil.releaseBuffer(niobuffer);
niobuffer = null;
}
示例3: release
import com.esotericsoftware.kryo.util.UnsafeUtil; //導入依賴的package包/類
/*** Release a direct buffer. {@link #setBuffer(ByteBuffer, int, int)} should be called before next write operations can be
* called. */
public void release () {
close();
UnsafeUtil.releaseBuffer(niobuffer);
niobuffer = null;
}
示例4: release
import com.esotericsoftware.kryo.util.UnsafeUtil; //導入依賴的package包/類
/*** Release a direct buffer. {@link #setBuffer(ByteBuffer, int)} should be called before next write operations can be called.
*
* NOTE: If Cleaner is not accessible due to SecurityManager restrictions, reflection could be used to obtain the "clean"
* method and then invoke it. */
public void release () {
clear();
UnsafeUtil.releaseBuffer(niobuffer);
niobuffer = null;
}
示例5: ByteBufferInput
import com.esotericsoftware.kryo.util.UnsafeUtil; //導入依賴的package包/類
/** This constructor allows for creation of a direct ByteBuffer of a given size at a given address.
*
* <p>
* Typical usage could look like this snippet:
*
* <pre>
* // Explicitly allocate memory
* long bufAddress = UnsafeUtil.unsafe().allocateMemory(4096);
* // Create a ByteBufferInput using the allocated memory region
* ByteBufferInput buffer = new ByteBufferInput(bufAddress, 4096);
*
* // Do some operations on this buffer here
*
* // Say that ByteBuffer won't be used anymore
* buffer.release();
* // Release the allocated region
* UnsafeUtil.unsafe().freeMemory(bufAddress);
* </pre>
*
* @param address starting address of a memory region pre-allocated using Unsafe.allocateMemory() */
public ByteBufferInput (long address, int size) {
setBuffer(UnsafeUtil.getDirectBufferAt(address, size));
}
示例6: ByteBufferOutput
import com.esotericsoftware.kryo.util.UnsafeUtil; //導入依賴的package包/類
/** Creates a direct ByteBuffer of a given size at a given address.
* <p>
* Typical usage could look like this snippet:
*
* <pre>
* // Explicitly allocate memory
* long bufAddress = UnsafeUtil.unsafe().allocateMemory(4096);
* // Create a ByteBufferOutput using the allocated memory region
* ByteBufferOutput buffer = new ByteBufferOutput(bufAddress, 4096);
*
* // Do some operations on this buffer here
*
* // Say that ByteBuffer won't be used anymore
* buffer.release();
* // Release the allocated region
* UnsafeUtil.unsafe().freeMemory(bufAddress);
* </pre>
* @param address starting address of a memory region pre-allocated using Unsafe.allocateMemory()
* @param maxBufferSize */
public ByteBufferOutput (long address, int maxBufferSize) {
niobuffer = UnsafeUtil.getDirectBufferAt(address, maxBufferSize);
setBuffer(niobuffer, maxBufferSize);
}
示例7: ByteBufferInput
import com.esotericsoftware.kryo.util.UnsafeUtil; //導入依賴的package包/類
/*** This constructor allows for creation of a direct ByteBuffer of a given size at a given address.
*
* <p>
* Typical usage could look like this snippet:
*
* <pre>
* // Explicitly allocate memory
* long bufAddress = UnsafeUtil.unsafe().allocateMemory(4096);
* // Create a ByteBufferInput using the allocated memory region
* ByteBufferInput buffer = new ByteBufferInput(bufAddress, 4096);
*
* // Do some operations on this buffer here
*
* // Say that ByteBuffer won't be used anymore
* buffer.release();
* // Release the allocated region
* UnsafeUtil.unsafe().freeMemory(bufAddress);
* </pre>
*
* @param address starting address of a memory region pre-allocated using Unsafe.allocateMemory()
* @param maxBufferSize */
public ByteBufferInput (long address, int maxBufferSize) {
niobuffer = UnsafeUtil.getDirectBufferAt(address, maxBufferSize);
setBuffer(niobuffer, 0, maxBufferSize);
}
示例8: ByteBufferOutput
import com.esotericsoftware.kryo.util.UnsafeUtil; //導入依賴的package包/類
/*** This constructor allows for creation of a direct ByteBuffer of a given size at a given address.
*
* <p>
* Typical usage could look like this snippet:
*
* <pre>
* // Explicitly allocate memory
* long bufAddress = UnsafeUtil.unsafe().allocateMemory(4096);
* // Create a ByteBufferOutput using the allocated memory region
* ByteBufferOutput buffer = new ByteBufferOutput(bufAddress, 4096);
*
* // Do some operations on this buffer here
*
* // Say that ByteBuffer won't be used anymore
* buffer.release();
* // Release the allocated region
* UnsafeUtil.unsafe().freeMemory(bufAddress);
* </pre>
*
* @param address starting address of a memory region pre-allocated using Unsafe.allocateMemory()
* @param maxBufferSize */
public ByteBufferOutput (long address, int maxBufferSize) {
niobuffer = UnsafeUtil.getDirectBufferAt(address, maxBufferSize);
setBuffer(niobuffer, maxBufferSize);
}