Changeset 467
- Timestamp:
- 07/21/07 20:50:36 (1 year ago)
- Files:
-
- version_0/java/src/com/rubyeventmachine/Application.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/ConnectionFactory.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/Connection.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/DefaultConnectionFactory.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/EventableChannel.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/EventableDatagramChannel.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/EventableSocketChannel.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/PeriodicTimer.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/tests/ApplicationTest.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/tests/ConnectTest.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/tests/EMTest.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/tests/TestServers.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/tests/TestTimers.java (modified) (1 diff)
- version_0/java/src/com/rubyeventmachine/Timer.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
version_0/java/src/com/rubyeventmachine/Application.java
r464 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 1 29 /** 2 30 * version_0/java/src/com/rubyeventmachine/ConnectionFactory.java
r465 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 30 1 31 package com.rubyeventmachine; 2 32 version_0/java/src/com/rubyeventmachine/Connection.java
r464 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 30 1 31 package com.rubyeventmachine; 2 32 version_0/java/src/com/rubyeventmachine/DefaultConnectionFactory.java
r465 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 30 1 31 package com.rubyeventmachine; 2 32 version_0/java/src/com/rubyeventmachine/EventableChannel.java
r461 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 1 30 package com.rubyeventmachine; 2 31 version_0/java/src/com/rubyeventmachine/EventableDatagramChannel.java
r463 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 1 30 package com.rubyeventmachine; 2 31 version_0/java/src/com/rubyeventmachine/EventableSocketChannel.java
r464 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 1 29 /** 2 30 * version_0/java/src/com/rubyeventmachine/PeriodicTimer.java
r451 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 1 30 package com.rubyeventmachine; 2 31 version_0/java/src/com/rubyeventmachine/tests/ApplicationTest.java
r465 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 30 1 31 package com.rubyeventmachine.tests; 2 32 version_0/java/src/com/rubyeventmachine/tests/ConnectTest.java
r464 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 1 29 /* $Id$ */ 2 30 version_0/java/src/com/rubyeventmachine/tests/EMTest.java
r462 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 1 30 package com.rubyeventmachine.tests; 2 31 version_0/java/src/com/rubyeventmachine/tests/TestServers.java
r465 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 1 30 package com.rubyeventmachine.tests; 2 31 version_0/java/src/com/rubyeventmachine/tests/TestTimers.java
r450 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 1 30 package com.rubyeventmachine.tests; 2 31 version_0/java/src/com/rubyeventmachine/Timer.java
r451 r467 1 /** 2 * $Id$ 3 * 4 * Author:: Francis Cianfrocca (gmail: blackhedd) 5 * Homepage:: http://rubyeventmachine.com 6 * Date:: 15 Jul 2007 7 * 8 * See EventMachine and EventMachine::Connection for documentation and 9 * usage examples. 10 * 11 * 12 *---------------------------------------------------------------------------- 13 * 14 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. 15 * Gmail: blackhedd 16 * 17 * This program is free software; you can redistribute it and/or modify 18 * it under the terms of either: 1) the GNU General Public License 19 * as published by the Free Software Foundation; either version 2 of the 20 * License, or (at your option) any later version; or 2) Ruby's License. 21 * 22 * See the file COPYING for complete licensing information. 23 * 24 *--------------------------------------------------------------------------- 25 * 26 * 27 */ 28 29 1 30 package com.rubyeventmachine; 2 31