[jira] [Commented] (COLLECTIONS-396) New DynamicIterator class.

2013-02-28 Thread Jeff Rodriguez (JIRA)

[ 
https://issues.apache.org/jira/browse/COLLECTIONS-396?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13589717#comment-13589717
 ] 

Jeff Rodriguez commented on COLLECTIONS-396:


Looks good, thanks!

 New DynamicIterator class.
 --

 Key: COLLECTIONS-396
 URL: https://issues.apache.org/jira/browse/COLLECTIONS-396
 Project: Commons Collections
  Issue Type: New Feature
  Components: Iterator
 Environment: Java 1.5 or greater
Reporter: Jeff Rodriguez
Priority: Minor
  Labels: dynamic, iterator, new
 Attachments: LazyIteratorChain.java, LazyIteratorChainTest.java

   Original Estimate: 1h
  Remaining Estimate: 1h

 I would like to submit my DynamicIterator class for inclusion in Commons 
 Collections.
 Description from JavaDoc:
 Iterates over the elements of an inner iterator provided by nextIterator() 
 Once the inner iterator's hasNext() method returns false, nextIterator() will 
 be called to obtain another iterator, and so on until nextIterator() returns 
 null.
 The use case I had in mind for this class was the paged web service. A web 
 service returns a list of results, which are paginated. Once a page's results 
 are exhausted, nextIterator() can go fetch the next page for iteration.
 This class, and accompanying test class are my original works. I have 
 released them into the public domain, feel free to use the appropriate ASF 
 license.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (COLLECTIONS-396) New DynamicIterator class.

2013-02-26 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-396?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez updated COLLECTIONS-396:
---

Attachment: LazyIteratorChain.java
LazyIteratorChainTest.java

Updated name and package.

 New DynamicIterator class.
 --

 Key: COLLECTIONS-396
 URL: https://issues.apache.org/jira/browse/COLLECTIONS-396
 Project: Commons Collections
  Issue Type: New Feature
  Components: Iterator
 Environment: Java 1.5 or greater
Reporter: Jeff Rodriguez
Priority: Minor
  Labels: dynamic, iterator, new
 Attachments: LazyIteratorChain.java, LazyIteratorChainTest.java

   Original Estimate: 1h
  Remaining Estimate: 1h

 I would like to submit my DynamicIterator class for inclusion in Commons 
 Collections.
 Description from JavaDoc:
 Iterates over the elements of an inner iterator provided by nextIterator() 
 Once the inner iterator's hasNext() method returns false, nextIterator() will 
 be called to obtain another iterator, and so on until nextIterator() returns 
 null.
 The use case I had in mind for this class was the paged web service. A web 
 service returns a list of results, which are paginated. Once a page's results 
 are exhausted, nextIterator() can go fetch the next page for iteration.
 This class, and accompanying test class are my original works. I have 
 released them into the public domain, feel free to use the appropriate ASF 
 license.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (COLLECTIONS-396) New DynamicIterator class.

2013-02-26 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-396?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez updated COLLECTIONS-396:
---

Attachment: (was: DynamicIterator.java)

 New DynamicIterator class.
 --

 Key: COLLECTIONS-396
 URL: https://issues.apache.org/jira/browse/COLLECTIONS-396
 Project: Commons Collections
  Issue Type: New Feature
  Components: Iterator
 Environment: Java 1.5 or greater
Reporter: Jeff Rodriguez
Priority: Minor
  Labels: dynamic, iterator, new
 Attachments: LazyIteratorChain.java, LazyIteratorChainTest.java

   Original Estimate: 1h
  Remaining Estimate: 1h

 I would like to submit my DynamicIterator class for inclusion in Commons 
 Collections.
 Description from JavaDoc:
 Iterates over the elements of an inner iterator provided by nextIterator() 
 Once the inner iterator's hasNext() method returns false, nextIterator() will 
 be called to obtain another iterator, and so on until nextIterator() returns 
 null.
 The use case I had in mind for this class was the paged web service. A web 
 service returns a list of results, which are paginated. Once a page's results 
 are exhausted, nextIterator() can go fetch the next page for iteration.
 This class, and accompanying test class are my original works. I have 
 released them into the public domain, feel free to use the appropriate ASF 
 license.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (COLLECTIONS-396) New DynamicIterator class.

2013-02-26 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/COLLECTIONS-396?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez updated COLLECTIONS-396:
---

Attachment: (was: DynamicIteratorTest.java)

 New DynamicIterator class.
 --

 Key: COLLECTIONS-396
 URL: https://issues.apache.org/jira/browse/COLLECTIONS-396
 Project: Commons Collections
  Issue Type: New Feature
  Components: Iterator
 Environment: Java 1.5 or greater
Reporter: Jeff Rodriguez
Priority: Minor
  Labels: dynamic, iterator, new
 Attachments: LazyIteratorChain.java, LazyIteratorChainTest.java

   Original Estimate: 1h
  Remaining Estimate: 1h

 I would like to submit my DynamicIterator class for inclusion in Commons 
 Collections.
 Description from JavaDoc:
 Iterates over the elements of an inner iterator provided by nextIterator() 
 Once the inner iterator's hasNext() method returns false, nextIterator() will 
 be called to obtain another iterator, and so on until nextIterator() returns 
 null.
 The use case I had in mind for this class was the paged web service. A web 
 service returns a list of results, which are paginated. Once a page's results 
 are exhausted, nextIterator() can go fetch the next page for iteration.
 This class, and accompanying test class are my original works. I have 
 released them into the public domain, feel free to use the appropriate ASF 
 license.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (COLLECTIONS-396) New DynamicIterator class.

2013-02-26 Thread Jeff Rodriguez (JIRA)

[ 
https://issues.apache.org/jira/browse/COLLECTIONS-396?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13587391#comment-13587391
 ] 

Jeff Rodriguez commented on COLLECTIONS-396:


Sounds good, Thomas. Attached updated copies.

Thanks

 New DynamicIterator class.
 --

 Key: COLLECTIONS-396
 URL: https://issues.apache.org/jira/browse/COLLECTIONS-396
 Project: Commons Collections
  Issue Type: New Feature
  Components: Iterator
 Environment: Java 1.5 or greater
Reporter: Jeff Rodriguez
Priority: Minor
  Labels: dynamic, iterator, new
 Attachments: LazyIteratorChain.java, LazyIteratorChainTest.java

   Original Estimate: 1h
  Remaining Estimate: 1h

 I would like to submit my DynamicIterator class for inclusion in Commons 
 Collections.
 Description from JavaDoc:
 Iterates over the elements of an inner iterator provided by nextIterator() 
 Once the inner iterator's hasNext() method returns false, nextIterator() will 
 be called to obtain another iterator, and so on until nextIterator() returns 
 null.
 The use case I had in mind for this class was the paged web service. A web 
 service returns a list of results, which are paginated. Once a page's results 
 are exhausted, nextIterator() can go fetch the next page for iteration.
 This class, and accompanying test class are my original works. I have 
 released them into the public domain, feel free to use the appropriate ASF 
 license.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (COLLECTIONS-396) New DynamicIterator class.

2013-02-25 Thread Jeff Rodriguez (JIRA)

[ 
https://issues.apache.org/jira/browse/COLLECTIONS-396?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13586437#comment-13586437
 ] 

Jeff Rodriguez commented on COLLECTIONS-396:


Following up on this issue, any word on inclusion in the library?

 New DynamicIterator class.
 --

 Key: COLLECTIONS-396
 URL: https://issues.apache.org/jira/browse/COLLECTIONS-396
 Project: Commons Collections
  Issue Type: New Feature
  Components: Iterator
 Environment: Java 1.5 or greater
Reporter: Jeff Rodriguez
Priority: Minor
  Labels: dynamic, iterator, new
 Attachments: DynamicIterator.java, DynamicIteratorTest.java

   Original Estimate: 1h
  Remaining Estimate: 1h

 I would like to submit my DynamicIterator class for inclusion in Commons 
 Collections.
 Description from JavaDoc:
 Iterates over the elements of an inner iterator provided by nextIterator() 
 Once the inner iterator's hasNext() method returns false, nextIterator() will 
 be called to obtain another iterator, and so on until nextIterator() returns 
 null.
 The use case I had in mind for this class was the paged web service. A web 
 service returns a list of results, which are paginated. Once a page's results 
 are exhausted, nextIterator() can go fetch the next page for iteration.
 This class, and accompanying test class are my original works. I have 
 released them into the public domain, feel free to use the appropriate ASF 
 license.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Updated: (IO-177) New Tailer class

2010-09-29 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/IO-177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez updated IO-177:
--

Attachment: Tailer.java
TailerListener.java

Updated with requested license changes.

 New Tailer class
 

 Key: IO-177
 URL: https://issues.apache.org/jira/browse/IO-177
 Project: Commons IO
  Issue Type: New Feature
  Components: Utilities
Reporter: Jeff Rodriguez
Priority: Minor
 Attachments: Tailer.java, TailerListener.java

   Original Estimate: 2h
  Remaining Estimate: 2h

 Simple implementation of the unix tail -f functionality.
 The classes will need to be updated to Commons IO style and package 
 namespace. No test case is currently written.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (IO-177) New Tailer class

2010-09-29 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/IO-177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez updated IO-177:
--

Attachment: (was: TailerListener.java)

 New Tailer class
 

 Key: IO-177
 URL: https://issues.apache.org/jira/browse/IO-177
 Project: Commons IO
  Issue Type: New Feature
  Components: Utilities
Reporter: Jeff Rodriguez
Priority: Minor
 Attachments: Tailer.java, TailerListener.java

   Original Estimate: 2h
  Remaining Estimate: 2h

 Simple implementation of the unix tail -f functionality.
 The classes will need to be updated to Commons IO style and package 
 namespace. No test case is currently written.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Closed: (LANG-455) New TimeoutProcessBuilder class

2008-11-06 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/LANG-455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez closed LANG-455.
---

Resolution: Won't Fix

This functionality can be satisfied by commons-exec.

 New TimeoutProcessBuilder class
 ---

 Key: LANG-455
 URL: https://issues.apache.org/jira/browse/LANG-455
 Project: Commons Lang
  Issue Type: New Feature
Reporter: Jeff Rodriguez
Priority: Minor
 Attachments: TimeoutProcessBuilder.java

   Original Estimate: 2h
  Remaining Estimate: 2h

 I've a new class I would like to contribute to Commons Lang. It's purpose is 
 to safely waitFor() processes created with a ProcessBuilder to exit. By 
 safely I mean a timeout is instituted.
 It will need to be updated to use Commons Lang code style and package name 
 space, as well as have a test case written for it. I'm not sure how that 
 should work given it's platform specific nature.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (LANG-455) New TimeoutProcessBuilder class

2008-08-16 Thread Jeff Rodriguez (JIRA)

[ 
https://issues.apache.org/jira/browse/LANG-455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12623141#action_12623141
 ] 

Jeff Rodriguez commented on LANG-455:
-

Actually, commons-exec might do exactly what this does. I'll have to check it 
out.

 New TimeoutProcessBuilder class
 ---

 Key: LANG-455
 URL: https://issues.apache.org/jira/browse/LANG-455
 Project: Commons Lang
  Issue Type: New Feature
Reporter: Jeff Rodriguez
Priority: Minor
 Attachments: TimeoutProcessBuilder.java

   Original Estimate: 2h
  Remaining Estimate: 2h

 I've a new class I would like to contribute to Commons Lang. It's purpose is 
 to safely waitFor() processes created with a ProcessBuilder to exit. By 
 safely I mean a timeout is instituted.
 It will need to be updated to use Commons Lang code style and package name 
 space, as well as have a test case written for it. I'm not sure how that 
 should work given it's platform specific nature.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (LANG-455) New TimeoutProcessBuilder class

2008-08-15 Thread Jeff Rodriguez (JIRA)
New TimeoutProcessBuilder class
---

 Key: LANG-455
 URL: https://issues.apache.org/jira/browse/LANG-455
 Project: Commons Lang
  Issue Type: New Feature
Reporter: Jeff Rodriguez
Priority: Minor


I've a new class I would like to contribute to Commons Lang. It's purpose is to 
safely waitFor() processes created with a ProcessBuilder to exit. By safely I 
mean a timeout is instituted.

It will need to be updated to use Commons Lang code style and package name 
space, as well as have a test case written for it. I'm not sure how that should 
work given it's platform specific nature.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (LANG-455) New TimeoutProcessBuilder class

2008-08-15 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/LANG-455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez updated LANG-455:


Attachment: TimeoutProcessBuilder.java

 New TimeoutProcessBuilder class
 ---

 Key: LANG-455
 URL: https://issues.apache.org/jira/browse/LANG-455
 Project: Commons Lang
  Issue Type: New Feature
Reporter: Jeff Rodriguez
Priority: Minor
 Attachments: TimeoutProcessBuilder.java

   Original Estimate: 2h
  Remaining Estimate: 2h

 I've a new class I would like to contribute to Commons Lang. It's purpose is 
 to safely waitFor() processes created with a ProcessBuilder to exit. By 
 safely I mean a timeout is instituted.
 It will need to be updated to use Commons Lang code style and package name 
 space, as well as have a test case written for it. I'm not sure how that 
 should work given it's platform specific nature.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (IO-177) New Tailer class

2008-08-15 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/IO-177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez updated IO-177:
--

Attachment: TailerListener.java

 New Tailer class
 

 Key: IO-177
 URL: https://issues.apache.org/jira/browse/IO-177
 Project: Commons IO
  Issue Type: New Feature
  Components: Utilities
Reporter: Jeff Rodriguez
Priority: Minor
 Attachments: Tailer.java, TailerListener.java

   Original Estimate: 2h
  Remaining Estimate: 2h

 Simple implementation of the unix tail -f functionality.
 The classes will need to be updated to Commons IO style and package 
 namespace. No test case is currently written.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (IO-177) New Tailer class

2008-08-15 Thread Jeff Rodriguez (JIRA)
New Tailer class


 Key: IO-177
 URL: https://issues.apache.org/jira/browse/IO-177
 Project: Commons IO
  Issue Type: New Feature
  Components: Utilities
Reporter: Jeff Rodriguez
Priority: Minor
 Attachments: Tailer.java, TailerListener.java

Simple implementation of the unix tail -f functionality.

The classes will need to be updated to Commons IO style and package namespace. 
No test case is currently written.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (IO-177) New Tailer class

2008-08-15 Thread Jeff Rodriguez (JIRA)

 [ 
https://issues.apache.org/jira/browse/IO-177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Rodriguez updated IO-177:
--

Attachment: Tailer.java

 New Tailer class
 

 Key: IO-177
 URL: https://issues.apache.org/jira/browse/IO-177
 Project: Commons IO
  Issue Type: New Feature
  Components: Utilities
Reporter: Jeff Rodriguez
Priority: Minor
 Attachments: Tailer.java, TailerListener.java

   Original Estimate: 2h
  Remaining Estimate: 2h

 Simple implementation of the unix tail -f functionality.
 The classes will need to be updated to Commons IO style and package 
 namespace. No test case is currently written.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.