org.jruby.Ruby.newErrnoENOTSOCKError()方法的使用及代码示例

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

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

Ruby.newErrnoENOTSOCKError介绍

暂无

代码示例

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

private void checkAddress(ThreadContext context, InetSocketAddress address) {
  if (address == null) {
    throw context.runtime.newErrnoENOTSOCKError("Not socket or not connected");
  }
}

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

private void checkAddress(ThreadContext context, InetSocketAddress address) {
  if (address == null) {
    throw context.runtime.newErrnoENOTSOCKError("Not socket or not connected");
  }
}

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

private void initFieldsFromDescriptor(Ruby runtime, ChannelDescriptor descriptor) {
  Channel mainChannel = descriptor.getChannel();
  if (mainChannel instanceof SocketChannel) {
    // ok, it's a socket...set values accordingly
    // just using AF_INET since we can't tell from SocketChannel...
    soDomain = AddressFamily.AF_INET;
    soType = Sock.SOCK_STREAM;
    soProtocol = ProtocolFamily.PF_INET;
  } else if (mainChannel instanceof UnixSocketChannel) {
    soDomain = AddressFamily.AF_UNIX;
    soType = Sock.SOCK_STREAM;
    soProtocol = ProtocolFamily.PF_UNIX;
  } else if (mainChannel instanceof DatagramChannel) {
    // datagram, set accordingly
    // again, AF_INET
    soDomain = AddressFamily.AF_INET;
    soType = Sock.SOCK_DGRAM;
    soProtocol = ProtocolFamily.PF_INET;
  } else {
    throw runtime.newErrnoENOTSOCKError("can't Socket.new/for_fd against a non-socket");
  }
}

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

private void initFieldsFromDescriptor(Ruby runtime, ChannelFD fd) {
  Channel mainChannel = fd.ch;
  if (mainChannel instanceof SocketChannel) {
    // ok, it's a socket...set values accordingly
    // just using AF_INET since we can't tell from SocketChannel...
    soDomain = AddressFamily.AF_INET;
    soType = Sock.SOCK_STREAM;
    soProtocolFamily = ProtocolFamily.PF_INET;
    soProtocol = Protocol.getProtocolByName("tcp");
  } else if (mainChannel instanceof UnixSocketChannel) {
    soDomain = AddressFamily.AF_UNIX;
    soType = Sock.SOCK_STREAM;
    soProtocolFamily = ProtocolFamily.PF_UNIX;
  } else if (mainChannel instanceof DatagramChannel) {
    // datagram, set accordingly
    // again, AF_INET
    soDomain = AddressFamily.AF_INET;
    soType = Sock.SOCK_DGRAM;
    soProtocolFamily = ProtocolFamily.PF_INET;
  } else {
    throw runtime.newErrnoENOTSOCKError("can't Socket.new/for_fd against a non-socket");
  }
}

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

private void initFieldsFromDescriptor(Ruby runtime, ChannelDescriptor descriptor) {
  Channel mainChannel = descriptor.getChannel();
  if (mainChannel instanceof SocketChannel) {
    // ok, it's a socket...set values accordingly
    // just using AF_INET since we can't tell from SocketChannel...
    soDomain = AddressFamily.AF_INET;
    soType = Sock.SOCK_STREAM;
    soProtocol = ProtocolFamily.PF_INET;
  } else if (mainChannel instanceof UnixSocketChannel) {
    soDomain = AddressFamily.AF_UNIX;
    soType = Sock.SOCK_STREAM;
    soProtocol = ProtocolFamily.PF_UNIX;
  } else if (mainChannel instanceof DatagramChannel) {
    // datagram, set accordingly
    // again, AF_INET
    soDomain = AddressFamily.AF_INET;
    soType = Sock.SOCK_DGRAM;
    soProtocol = ProtocolFamily.PF_INET;
  } else {
    throw runtime.newErrnoENOTSOCKError("can't Socket.new/for_fd against a non-socket");
  }
}

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

private void initFieldsFromDescriptor(Ruby runtime, ChannelFD fd) {
  Channel mainChannel = fd.ch;
  if (mainChannel instanceof SocketChannel) {
    // ok, it's a socket...set values accordingly
    // just using AF_INET since we can't tell from SocketChannel...
    soDomain = AddressFamily.AF_INET;
    soType = Sock.SOCK_STREAM;
    soProtocolFamily = ProtocolFamily.PF_INET;
    soProtocol = Protocol.getProtocolByName("tcp");
  } else if (mainChannel instanceof UnixSocketChannel) {
    soDomain = AddressFamily.AF_UNIX;
    soType = Sock.SOCK_STREAM;
    soProtocolFamily = ProtocolFamily.PF_UNIX;
  } else if (mainChannel instanceof DatagramChannel) {
    // datagram, set accordingly
    // again, AF_INET
    soDomain = AddressFamily.AF_INET;
    soType = Sock.SOCK_DGRAM;
    soProtocolFamily = ProtocolFamily.PF_INET;
  } else {
    throw runtime.newErrnoENOTSOCKError("can't Socket.new/for_fd against a non-socket");
  }
}

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

private IRubyObject peeraddrCommon(ThreadContext context, boolean reverse) {
  try {
    InetSocketAddress address = getRemoteSocket();
    if (address == null) {
      throw context.runtime.newErrnoENOTSOCKError("Not socket or not connected");
    }
    return addrFor(context, address, reverse);
  } catch (BadDescriptorException e) {
    throw context.runtime.newErrnoEBADFError();
  }
}

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

private IRubyObject addrCommon(ThreadContext context, boolean reverse) {
  try {
    InetSocketAddress address = getSocketAddress();
    if (address == null) {
      throw context.runtime.newErrnoENOTSOCKError("Not socket or not connected");
    }
    return addrFor(context, address, reverse);
  } catch (BadDescriptorException e) {
    throw context.runtime.newErrnoEBADFError();
  }
}

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

private IRubyObject addrCommon(ThreadContext context, boolean reverse) {
  try {
    InetSocketAddress address = getSocketAddress();
    if (address == null) {
      throw context.runtime.newErrnoENOTSOCKError("Not socket or not connected");
    }
    return addrFor(context, address, reverse);
  } catch (BadDescriptorException e) {
    throw context.runtime.newErrnoEBADFError();
  }
}

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

private IRubyObject peeraddrCommon(ThreadContext context, boolean reverse) {
  try {
    InetSocketAddress address = getRemoteSocket();
    if (address == null) {
      throw context.runtime.newErrnoENOTSOCKError("Not socket or not connected");
    }
    return addrFor(context, address, reverse);
  } catch (BadDescriptorException e) {
    throw context.runtime.newErrnoEBADFError();
  }
}

相关文章

微信公众号

最新文章

更多

Ruby类方法