• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java SinkChannel类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中java.nio.channels.Pipe.SinkChannel的典型用法代码示例。如果您正苦于以下问题:Java SinkChannel类的具体用法?Java SinkChannel怎么用?Java SinkChannel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



SinkChannel类属于java.nio.channels.Pipe包,在下文中一共展示了SinkChannel类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: run

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
private void run() throws Exception
{
	NioThread nt=new NioThread();
	final Socket s=new Socket("localhost", 9999);
	SourceChannel in=ConnectNio.inputStreamToPipe(s.getInputStream());
	in.configureBlocking(false);
	SinkChannel out=ConnectNio.outputStreamToPipe(s.getOutputStream(), s);
	out.configureBlocking(false);
	DualChannelProcessorMultiplexer multiplexer=new DualChannelProcessorMultiplexer(nt, in, out, false, 
			CoolRMINioRemoter.clientId, CoolRMINioRemoter.serverId);
	CoolRMINioClient cli=new CoolRMINioClient(getClass().getClassLoader(), false);
	cli.connect(multiplexer);
	multiplexer.start();
	nt.start();
	Iremote r= (Iremote)cli.getService(Iremote.class, Iremote.class.getName());
	System.out.println(""+r.getValue("Kitten"));
	System.out.println(""+r.getValue("Kitten"));
	System.out.println(""+r.getValue("Kitten"));
	System.out.println(""+r.getValue("Kitten"));
	cli.close();
	nt.close();
}
 
开发者ID:rizsi,项目名称:rcom,代码行数:23,代码来源:CoolRMIHalfNioClientLauncher.java


示例2: testStagingPreservesClasspath

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
@Test
public void testStagingPreservesClasspath() throws Exception {
  File smallFile = makeFileWithContents("small.txt", "small");
  File largeFile = makeFileWithContents("large.txt", "large contents");
  when(mockGcsUtil.getObjects(anyListOf(GcsPath.class)))
      .thenReturn(ImmutableList.of(StorageObjectOrIOException.create(
          new FileNotFoundException("some/path"))));

  when(mockGcsUtil.create(any(GcsPath.class), anyString()))
      .thenAnswer(new Answer<SinkChannel>() {
        @Override
        public SinkChannel answer(InvocationOnMock invocation) throws Throwable {
          return Pipe.open().sink();
        }
      });

  List<DataflowPackage> targets =
      defaultPackageUtil.stageClasspathElements(
          ImmutableList.of(smallFile.getAbsolutePath(), largeFile.getAbsolutePath()),
          STAGING_PATH,
          createOptions);
  // Verify that the packages are returned small, then large, matching input order even though
  // the large file would be uploaded first.
  assertThat(targets.get(0).getName(), startsWith("small"));
  assertThat(targets.get(1).getName(), startsWith("large"));
}
 
开发者ID:apache,项目名称:beam,代码行数:27,代码来源:PackageUtilTest.java


示例3: isOpen

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
private boolean isOpen(Object resource) {
    if (resource instanceof SourceChannel) {
        return ((SourceChannel)resource).isOpen();
    } else if (resource instanceof SinkChannel) {
        return ((SinkChannel)resource).isOpen();
    } else if (resource instanceof Selector) {
        return ((Selector)resource).isOpen();
    } else if (resource instanceof ServerSocketChannel) {
        return ((ServerSocketChannel)resource).isOpen();
    } else if (resource instanceof SocketChannel) {
        return ((SocketChannel)resource).isOpen();
    } else {
        throw new AssertionFailedError("Don't know how to check if this type is open: " + resource.getClass());
    }
}
 
开发者ID:apache,项目名称:qpid-proton-j,代码行数:16,代码来源:LeakTestReactor.java


示例4: testConstructor

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
@TestTargetNew(
    level = TestLevel.COMPLETE,
    notes = "",
    method = "SinkChannel",
    args = {java.nio.channels.spi.SelectorProvider.class}
)
public void testConstructor() throws IOException {
    SinkChannel channel =
            SelectorProvider.provider().openPipe().sink();
    assertNotNull(channel);
    assertSame(SelectorProvider.provider(),channel.provider());
    channel = Pipe.open().sink();
    assertNotNull(channel);
    assertSame(SelectorProvider.provider(),channel.provider());
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:16,代码来源:SinkChannelTest.java


示例5: test_sink

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
/**
 * @tests java.nio.channels.Pipe#sink()
 */
@TestTargetNew(
    level = TestLevel.COMPLETE,
    notes = "",
    method = "sink",
    args = {}
)
public void test_sink() throws IOException {
    Pipe pipe = Pipe.open();
    SinkChannel sink = pipe.sink();
    assertTrue(sink.isBlocking());
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:15,代码来源:PipeTest.java


示例6: HandshakeHandler

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
HandshakeHandler(boolean clientMode, SourceChannel in, SinkChannel out)
        throws SSLException {
    this.in = in;
    this.out = out;
    engine = getEngine();
    engine.setUseClientMode(clientMode);
    String[] cipherSuites = engine.getSupportedCipherSuites();
    Set<String> enabledSuites = new HashSet<String>();
    for (String cipherSuite : cipherSuites) {
        if (cipherSuite.contains("anon")) {
            enabledSuites.add(cipherSuite);
        }
    }
    engine.setEnabledCipherSuites((String[]) enabledSuites.toArray(
            new String[enabledSuites.size()]));

    engine.beginHandshake();
    status = engine.getHandshakeStatus();

    if (clientMode) {
        LOGTAG = "CLIENT: ";
    } else {
        LOGTAG = "SERVER: ";
    }

    log("CipherSuites: " + Arrays.toString(engine.getEnabledCipherSuites()));
    log(status);

    readBuffer = ByteBuffer.allocate(200000);
    writeBuffer = ByteBuffer.allocate(20000);
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:32,代码来源:SSLEngineTest.java


示例7: prepareEngines

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
void prepareEngines() throws IOException {
    Pipe clientSendPipe = Pipe.open();
    Pipe serverSendPipe = Pipe.open();

    SinkChannel clientSink = clientSendPipe.sink();
    SourceChannel serverSource = clientSendPipe.source();
    SinkChannel serverSink = serverSendPipe.sink();
    SourceChannel clientSource = serverSendPipe.source();

    clientEngine = new HandshakeHandler(true, clientSource, clientSink);
    serverEngine = new HandshakeHandler(false, serverSource, serverSink);
}
 
开发者ID:keplersj,项目名称:In-the-Box-Fork,代码行数:13,代码来源:SSLEngineTest.java


示例8: PipeSelectableChannel

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
PipeSelectableChannel(final SinkChannel out, final SourceChannel in) {
	if (out == null) {
		throw new NullPointerException("out == null");
	}
	if (in == null) {
		throw new NullPointerException("in == null");
	}
	if ((in.validOps() & out.validOps()) != 0) {
		throw new IllegalArgumentException("sink and source have overlapping validOps");
	}
	this.out = out;
	this.in = in;
}
 
开发者ID:ricardopadilha,项目名称:dsys-snio,代码行数:14,代码来源:PipeSelectableChannel.java


示例9: EchoInputStreamWrapper

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
private EchoInputStreamWrapper(InputStream in, SinkChannel out) {
    this.in = in;
    this.out = out;
    setName(getClass().getName() + "-" + idCounter.incrementAndGet());
    setDaemon(true);
}
 
开发者ID:apache,项目名称:qpid-proton-j,代码行数:7,代码来源:EchoInputStreamWrapper.java


示例10: mai

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
public mai(Context paramContext, File paramFile, String paramString, long paramLong1, long paramLong2, Map<String, String> paramMap)
{
  if ((paramLong1 < 0L) || ((paramLong2 != -1L) && (paramLong1 > paramLong2))) {
    throw new IllegalArgumentException("Invalid stream limits");
  }
  this.f = paramLong1;
  this.d = paramLong2;
  long l1;
  if (paramFile == null)
  {
    l1 = 0L;
    this.e = l1;
    if (this.f >= this.e) {
      break label216;
    }
    this.b = new RandomAccessFile(paramFile, "r");
    this.b.seek(this.f);
  }
  for (;;)
  {
    if (paramString == null) {
      break label224;
    }
    Pipe localPipe = Pipe.open();
    this.c = Channels.newInputStream(localPipe.source());
    Pipe.SinkChannel localSinkChannel = localPipe.sink();
    this.a = ixd.a(paramContext).a(paramString, 4, paramMap, localSinkChannel, this);
    long l2 = Math.max(this.e, this.f);
    if (l2 != 0L)
    {
      new StringBuilder(41).append("Starting request at: ").append(l2);
      this.a.a(l2);
    }
    this.a.f();
    return;
    l1 = paramFile.length();
    break;
    label216:
    this.b = null;
  }
  label224:
  this.a = null;
  this.c = null;
}
 
开发者ID:ChiangC,项目名称:FMTech,代码行数:45,代码来源:mai.java


示例11: OutPipe

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
public OutPipe(SinkChannel sink) throws IOException {
    s = sink;
    s.configureBlocking(true);
}
 
开发者ID:nologic,项目名称:nabs,代码行数:5,代码来源:StreamPipe.java


示例12: test_sink

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
/**
 * @tests java.nio.channels.Pipe#sink()
 */
public void test_sink() throws IOException {
	Pipe pipe = Pipe.open();
	SinkChannel sink = pipe.sink();
	assertTrue(sink.isBlocking());
}
 
开发者ID:shannah,项目名称:cn1,代码行数:9,代码来源:PipeTest.java


示例13: DualChannelProcessorMultiplexer

import java.nio.channels.Pipe.SinkChannel; //导入依赖的package包/类
/**
 * 
 * @param t
 * @param c
 * @param client
 * @param thisId Identifier of this multiplexer endpoint. This is sent to the client on connection.
 * @param remoteId Required identifier of the other endpoint. This is checked to be equal to the value received from the client.
 */
public DualChannelProcessorMultiplexer(NioThread t, SourceChannel source, SinkChannel sink, boolean client, byte[] thisId, byte[] remoteId) {
	super(thisId, remoteId);
	cpSink=new CPSink(t, sink, client);
	cpSource=new CPSource(t, source, client);
}
 
开发者ID:rizsi,项目名称:rcom,代码行数:14,代码来源:DualChannelProcessorMultiplexer.java



注:本文中的java.nio.channels.Pipe.SinkChannel类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Base64类代码示例发布时间:2022-05-22
下一篇:
Java StreamBuildListener类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap