org.jruby.RubyClass.getMarshal()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(93)

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

RubyClass.getMarshal介绍

暂无

代码示例

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

public final Object unmarshal(UnmarshalStream unmarshalStream) throws IOException {
  return getMarshal().unmarshalFrom(runtime, this, unmarshalStream);
}

代码示例来源:origin: org.jruby/jruby-complete

public final void marshal(Object obj, MarshalStream marshalStream) throws IOException {
  getMarshal().marshalTo(runtime, obj, this, marshalStream);
}

代码示例来源:origin: org.jruby/jruby-complete

public final Object unmarshal(UnmarshalStream unmarshalStream) throws IOException {
  return getMarshal().unmarshalFrom(runtime, this, unmarshalStream);
}

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

public final void marshal(Object obj, MarshalStream marshalStream) throws IOException {
  getMarshal().marshalTo(runtime, obj, this, marshalStream);
}

代码示例来源:origin: org.jruby/jruby-core

public final void marshal(Object obj, MarshalStream marshalStream) throws IOException {
  getMarshal().marshalTo(runtime, obj, this, marshalStream);
}

代码示例来源:origin: org.jruby/jruby-core

public final Object unmarshal(UnmarshalStream unmarshalStream) throws IOException {
  return getMarshal().unmarshalFrom(runtime, this, unmarshalStream);
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

public final void marshal(Object obj, MarshalStream marshalStream) throws IOException {
  getMarshal().marshalTo(runtime, obj, this, marshalStream);
}

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

public final Object unmarshal(UnmarshalStream unmarshalStream) throws IOException {
  return getMarshal().unmarshalFrom(runtime, this, unmarshalStream);
}

代码示例来源:origin: org.jruby/jruby-complete

static RubyClass createSetClass(final Ruby runtime) {
  RubyClass Set = runtime.defineClass("Set", runtime.getObject(), ALLOCATOR);
  Set.setReifiedClass(RubySet.class);
  Set.includeModule(runtime.getEnumerable());
  Set.defineAnnotatedMethods(RubySet.class);
  Set.setMarshal(new SetMarshal(Set.getMarshal()));
  runtime.getLoadService().require("jruby/set.rb");
  return Set;
}

代码示例来源:origin: org.jruby/jruby-core

static RubyClass createSetClass(final Ruby runtime) {
  RubyClass Set = runtime.defineClass("Set", runtime.getObject(), ALLOCATOR);
  Set.setReifiedClass(RubySet.class);
  Set.includeModule(runtime.getEnumerable());
  Set.defineAnnotatedMethods(RubySet.class);
  Set.setMarshal(new SetMarshal(Set.getMarshal()));
  runtime.getLoadService().require("jruby/set.rb");
  return Set;
}

相关文章

微信公众号

最新文章

更多

RubyClass类方法