All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.plugin.js.external.ExternalArray Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.plugin.js.external;

import cn.nukkit.plugin.js.JSExternal;
import org.graalvm.polyglot.Context;
import org.graalvm.polyglot.Value;
import org.graalvm.polyglot.proxy.ProxyArray;

public final class ExternalArray extends JSExternal implements ProxyArray {
    public ExternalArray(Context sourceContext, Value value) {
        super(sourceContext, value);
    }

    @Override
    public Object get(long index) {
        synchronized (sourceContext) {
            checkAlive();
            return value.getArrayElement(index);
        }
    }

    @Override
    public void set(long index, Value value) {
        synchronized (sourceContext) {
            checkAlive();
            value.setArrayElement(index, value);
        }
    }

    @Override
    public boolean remove(long index) {
        synchronized (sourceContext) {
            checkAlive();
            return value.removeArrayElement(index);
        }
    }

    @Override
    public long getSize() {
        synchronized (sourceContext) {
            checkAlive();
            return value.getArraySize();
        }
    }

    @Override
    public Object getIterator() {
        synchronized (sourceContext) {
            checkAlive();
            return value.getIterator();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy