本文整理了Java中com.eclipsesource.v8.V8.lowMemoryNotification()
方法的一些代码示例,展示了V8.lowMemoryNotification()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。V8.lowMemoryNotification()
方法的具体详情如下:
包路径:com.eclipsesource.v8.V8
类名称:V8
方法名:lowMemoryNotification
[英]Indicates to V8 that the system is low on memory. V8 may use this to attempt to recover space by running the garbage collector.
[中]向V8指示系统内存不足。V8可能会通过运行垃圾收集器来尝试恢复空间。
代码示例来源:origin: eclipsesource/J2V8
/**
* Indicates to V8 that the system is low on memory.
* V8 may use this to attempt to recover space by running
* the garbage collector.
*/
public void lowMemoryNotification() {
checkThread();
lowMemoryNotification(getV8RuntimePtr());
}
代码示例来源:origin: eclipsesource/J2V8
/**
* Indicates to V8 that the system is low on memory.
* V8 may use this to attempt to recover space by running
* the garbage collector.
*/
public void lowMemoryNotification() {
checkThread();
lowMemoryNotification(getV8RuntimePtr());
}
代码示例来源:origin: eclipsesource/J2V8
@Test
public void testLowMemoryNotification() {
v8.lowMemoryNotification();
}
内容来源于网络,如有侵权,请联系作者删除!