Package | Description |
---|---|
org.jruby.util.io |
Modifier and Type | Method and Description |
---|---|
ChannelDescriptor |
ChannelDescriptor.dup()
Deprecated.
Mimics the POSIX dup(2) function, returning a new descriptor that references
the same open channel.
|
ChannelDescriptor |
ChannelDescriptor.dup2(int fileno)
Deprecated.
Mimics the POSIX dup2(2) function, returning a new descriptor that references
the same open channel but with a specified fileno.
|
ChannelDescriptor |
Stream.getDescriptor() |
ChannelDescriptor |
CRLFStreamWrapper.getDescriptor() |
ChannelDescriptor |
ChannelStream.getDescriptor()
Deprecated.
|
static ChannelDescriptor |
ChannelDescriptor.getDescriptorByFileno(int aFileno)
Deprecated.
|
static ChannelDescriptor |
ChannelDescriptor.open(String cwd,
String path,
ModeFlags flags)
Deprecated.
|
static ChannelDescriptor |
ChannelDescriptor.open(String cwd,
String path,
ModeFlags flags,
ClassLoader classLoader)
Deprecated.
|
static ChannelDescriptor |
ChannelDescriptor.open(String cwd,
String path,
ModeFlags flags,
int perm,
jnr.posix.POSIX posix)
Deprecated.
|
static ChannelDescriptor |
ChannelDescriptor.open(String cwd,
String path,
ModeFlags flags,
int perm,
jnr.posix.POSIX posix,
ClassLoader classLoader)
Deprecated.
|
ChannelDescriptor |
ChannelDescriptor.reopen(Channel channel,
ModeFlags modes)
Deprecated.
|
ChannelDescriptor |
ChannelDescriptor.reopen(RandomAccessFile file,
ModeFlags modes)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
ChannelDescriptor.dup2Into(ChannelDescriptor other)
Deprecated.
Mimics the POSIX dup2(2) function, returning a new descriptor that references
the same open channel but with a specified fileno.
|
static Stream |
ChannelStream.fdopen(Ruby runtime,
ChannelDescriptor descriptor,
ModeFlags modes)
Deprecated.
|
static Stream |
ChannelStream.fdopen(Ruby runtime,
ChannelDescriptor descriptor,
ModeFlags modes,
boolean autoclose)
Deprecated.
|
static Stream |
ChannelStream.open(Ruby runtime,
ChannelDescriptor descriptor)
Deprecated.
|
static Stream |
ChannelStream.open(Ruby runtime,
ChannelDescriptor descriptor,
boolean autoclose)
Deprecated.
|
Copyright © 2001-2015 JRuby. All Rights Reserved.