com.eclipsesource.v8.V8Array.setWeak()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(74)

本文整理了Java中com.eclipsesource.v8.V8Array.setWeak()方法的一些代码示例,展示了V8Array.setWeak()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。V8Array.setWeak()方法的具体详情如下:
包路径:com.eclipsesource.v8.V8Array
类名称:V8Array
方法名:setWeak

V8Array.setWeak介绍

暂无

代码示例

代码示例来源:origin: eclipsesource/J2V8

TypedArray(final V8TypedArray typedArray) {
  this.typedArray = (V8TypedArray) typedArray.twin().setWeak();
}

代码示例来源:origin: eclipsesource/J2V8

/**
 * Create a new TypedArray from an ArrayBuffer.
 *
 * @param v8 the V8Runtime on which to create the TypedArray
 * @param buffer the ArrayBuffer to use to back the TypedArray
 * @param type the Type of Array to create
 * @param offset the Offset into the ArrayBuffer in which to map the TyepdArray
 * @param size the Size of the TypedArray
 */
public TypedArray(final V8 v8, final ArrayBuffer buffer, final int type, final int offset, final int size) {
  V8ArrayBuffer v8ArrayBuffer = buffer.getV8ArrayBuffer();
  V8TypedArray v8typedArray = new V8TypedArray(v8, v8ArrayBuffer, type, offset, size);
  try {
    typedArray = (V8TypedArray) v8typedArray.twin().setWeak();
  } finally {
    v8ArrayBuffer.close();
    v8typedArray.close();
  }
}

代码示例来源:origin: eclipsesource/J2V8

TypedArray(final V8TypedArray typedArray) {
  this.typedArray = (V8TypedArray) typedArray.twin().setWeak();
}

代码示例来源:origin: eclipsesource/J2V8

/**
 * Create a new TypedArray from an ArrayBuffer.
 *
 * @param v8 the V8Runtime on which to create the TypedArray
 * @param buffer the ArrayBuffer to use to back the TypedArray
 * @param type the Type of Array to create
 * @param offset the Offset into the ArrayBuffer in which to map the TyepdArray
 * @param size the Size of the TypedArray
 */
public TypedArray(final V8 v8, final ArrayBuffer buffer, final int type, final int offset, final int size) {
  V8ArrayBuffer v8ArrayBuffer = buffer.getV8ArrayBuffer();
  V8TypedArray v8typedArray = new V8TypedArray(v8, v8ArrayBuffer, type, offset, size);
  try {
    typedArray = (V8TypedArray) v8typedArray.twin().setWeak();
  } finally {
    v8ArrayBuffer.close();
    v8typedArray.close();
  }
}

相关文章