org.jruby.ext.ffi.jffi.FastLongMethodZeroArg Maven / Gradle / Ivy
package org.jruby.ext.ffi.jffi;
import com.kenai.jffi.Function;
import org.jruby.RubyModule;
import org.jruby.runtime.Block;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
final class FastLongMethodZeroArg extends FastLongMethod {
public FastLongMethodZeroArg(RubyModule implementationClass, Function function,
LongResultConverter resultConverter, LongParameterConverter[] parameterConverters) {
super(implementationClass, function, resultConverter, parameterConverters);
}
@Override
public final IRubyObject call(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) {
arity.checkArity(context.getRuntime(), args);
return resultConverter.fromNative(context, invoker.invokeVrL(function));
}
@Override
public final IRubyObject call(ThreadContext context, IRubyObject self, RubyModule klazz, String name) {
return resultConverter.fromNative(context, invoker.invokeVrL(function));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy