1 // **********************************************************************
3 // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
8 // **********************************************************************
10 package test
.Ice
.background
;
12 class Acceptor
implements IceInternal
.Acceptor
14 public java
.nio
.channels
.ServerSocketChannel
17 return _acceptor
.fd();
32 public IceInternal
.Transceiver
35 return new Transceiver(_configuration
, _acceptor
.accept());
41 return _acceptor
.toString();
44 Acceptor(Configuration configuration
, IceInternal
.Acceptor acceptor
)
46 _configuration
= configuration
;
50 protected synchronized void
57 final private IceInternal
.Acceptor _acceptor
;
58 private Configuration _configuration
;