| Constructor and Description |
|---|
BootstrapList(List<Object> delegate,
io.netty.channel.ChannelHandler handler)
Construct a new bootstrap list.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
Object element) |
boolean |
add(Object element) |
boolean |
addAll(Collection<? extends Object> collection) |
boolean |
addAll(int index,
Collection<? extends Object> c) |
void |
clear() |
void |
close()
Close and revert all changes.
|
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
Object |
get(int index) |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<Object> |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator<Object> |
listIterator() |
ListIterator<Object> |
listIterator(int index) |
protected void |
processBootstrap(io.netty.channel.ChannelFuture future)
Process a single channel future.
|
protected void |
processElement(Object element)
Process a single element.
|
Object |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
Object |
set(int index,
Object element) |
int |
size() |
List<Object> |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
protected void |
unprocessBootstrap(io.netty.channel.ChannelFuture future)
Revert any changes we made to the channel future.
|
protected void |
unprocessElement(Object element)
Unprocess a single element.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, hashCode, replaceAll, sort, spliteratorparallelStream, removeIf, streampublic boolean add(Object element)
public boolean addAll(Collection<? extends Object> collection)
protected void processElement(Object element)
element - - the element.protected void unprocessElement(Object element)
element - - the element to unprocess.protected void processBootstrap(io.netty.channel.ChannelFuture future)
future - - the future.protected void unprocessBootstrap(io.netty.channel.ChannelFuture future)
future - - the future.public void close()
public int size()
public boolean isEmpty()
public boolean contains(Object o)
public Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean remove(Object o)
public boolean containsAll(Collection<?> c)
containsAll in interface Collection<Object>containsAll in interface List<Object>public boolean addAll(int index,
Collection<? extends Object> c)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public void clear()
public int lastIndexOf(Object o)
lastIndexOf in interface List<Object>public ListIterator<Object> listIterator()
listIterator in interface List<Object>public ListIterator<Object> listIterator(int index)
listIterator in interface List<Object>Copyright © 2012–2017 Comphenix and dmulloy2. Licensed under the GNU GPL v2.