Seems to be the simplest way. thanks.
2007/2/12, Paul J DeCoursey <[EMAIL PROTECTED]>:
Extend LinkedList and override add to check the size of the map, and if it's too large then removeFirst. nicolas de loof wrote: > This one does not support add(). > > I want my list (collection ?) to be auto-limited, not fixed-sized : > add will > always work, but the latest elements may be lost if list grows over > maxsize. > > > 2007/2/12, Mark A Fortner <[EMAIL PROTECTED]>: >> >> Did you try the FixedSizeList? >> >> Mark >> >> ----- Original Message ---- >> From: nicolas de loof <[EMAIL PROTECTED]> >> To: [email protected] >> Sent: Monday, February 12, 2007 5:11:49 AM >> Subject: [collection] some support for size-limited List ? >> >> Hello, >> >> I'm looking for a List implementation that would countains at most N >> elements. When more that N elements are added, the List is truncated. >> This >> looks like a Last-Recently-Used eviction feature, but I didn't finf >> support >> for such a List in commons-collections. >> >> Any suggestion ? >> >> Nico. >> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
