本文整理了Java中org.jruby.Ruby.newErrnoENOTSOCKError
方法的一些代码示例,展示了Ruby.newErrnoENOTSOCKError
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Ruby.newErrnoENOTSOCKError
方法的具体详情如下:
包路径:org.jruby.Ruby
类名称: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();
}
}
内容来源于网络,如有侵权,请联系作者删除!