當前位置: 首頁>>代碼示例>>Java>>正文


Java UnsafeUtil類代碼示例

本文整理匯總了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;
}
 
開發者ID:HoratiusTang,項目名稱:EsperDist,代碼行數:7,代碼來源:ByteBufferInput.java

示例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;
}
 
開發者ID:HoratiusTang,項目名稱:EsperDist,代碼行數:10,代碼來源:ByteBufferOutput.java

示例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;
}
 
開發者ID:HoratiusTang,項目名稱:EsperDist,代碼行數:8,代碼來源:ByteBufferInput.java

示例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;
}
 
開發者ID:HoratiusTang,項目名稱:EsperDist,代碼行數:10,代碼來源:ByteBufferOutput.java

示例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));
}
 
開發者ID:HoratiusTang,項目名稱:EsperDist,代碼行數:24,代碼來源:ByteBufferInput.java

示例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);
}
 
開發者ID:HoratiusTang,項目名稱:EsperDist,代碼行數:24,代碼來源:ByteBufferOutput.java

示例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);
}
 
開發者ID:HoratiusTang,項目名稱:EsperDist,代碼行數:26,代碼來源:ByteBufferInput.java

示例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);
}
 
開發者ID:HoratiusTang,項目名稱:EsperDist,代碼行數:26,代碼來源:ByteBufferOutput.java


注:本文中的com.esotericsoftware.kryo.util.UnsafeUtil類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。