|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
MatchSet
instead. MatchSet
s
can be obtained using the
JavaSpace05.contents
method.
public interface AdminIterator
Interface for the iterators returned by the contents()
method of JavaSpaceAdmin
. Note
AdminIterator
s do not survive restarts of the
underlying space.
JavaSpaceAdmin
Method Summary | |
---|---|
void |
close()
Deprecated. Tell the server that this iterator is no longer in use. |
void |
delete()
Deprecated. The effect of this call depends on the most recent call to next() :
If the last call to next() returned an
Entry that entry will be removed from the space. |
Entry |
next()
Deprecated. Return the next entry in the sequence. |
Method Detail |
---|
Entry next() throws UnusableEntryException, RemoteException
null
if there are no more matching entries in the space.
This method is idempotent in the face of RemoteException
s.
UnusableEntryException
- if the field of next entry in
sequence can't be deserialized (usually this is because the class
in question could not be loaded).
RemoteException
void delete() throws RemoteException
next()
:
next()
returned an
Entry
that entry will be removed from the space.
next()
threw a
UnusableEntryException
the Entry
that
could not be deserialized will be removed from the space.
next()
returned
null
, threw a RemoteException
, or
next()
has not yet been called on this iterator a
IllegalStateException
will be thrown and no entry will
be removed.
RemoteException
.
IllegalStateException
- if next()
has not be
called on this iterator, or the last invocation of
next()
returned null
or threw
RemoteException
.
RemoteException
void close() throws RemoteException
close()
method.
This method is idempotent in the face of RemoteException
.
RemoteException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |