Use arraylist
This commit is contained in:
parent
40459a7e99
commit
9a8eee3919
@ -27,7 +27,7 @@ interface IBooleanSubscriptable : ISubscriptable<Boolean> {
|
||||
}
|
||||
}
|
||||
|
||||
private val subscribers = LinkedHashSet<L>(0)
|
||||
private val subscribers = ArrayList<L>(0)
|
||||
private val queue = ArrayList<L>(0)
|
||||
|
||||
override fun addListener(listener: BooleanConsumer): ISubscriptable.L {
|
||||
|
@ -27,7 +27,7 @@ interface IDoubleSubcripable : ISubscriptable<Double> {
|
||||
}
|
||||
}
|
||||
|
||||
private val subscribers = LinkedHashSet<L>(0)
|
||||
private val subscribers = ArrayList<L>(0)
|
||||
private val queue = ArrayList<L>(0)
|
||||
|
||||
override fun addListener(listener: DoubleConsumer): ISubscriptable.L {
|
||||
|
@ -27,7 +27,7 @@ interface IFloatSubcripable : ISubscriptable<Float> {
|
||||
}
|
||||
}
|
||||
|
||||
private val subscribers = LinkedHashSet<L>(0)
|
||||
private val subscribers = ArrayList<L>(0)
|
||||
private val queue = ArrayList<L>(0)
|
||||
|
||||
override fun addListener(listener: FloatConsumer): ISubscriptable.L {
|
||||
|
@ -27,7 +27,7 @@ interface IIntSubcripable : ISubscriptable<Int> {
|
||||
}
|
||||
}
|
||||
|
||||
private val subscribers = LinkedHashSet<L>(0)
|
||||
private val subscribers = ArrayList<L>(0)
|
||||
private val queue = ArrayList<L>(0)
|
||||
|
||||
override fun addListener(listener: IntConsumer): ISubscriptable.L {
|
||||
|
@ -27,7 +27,7 @@ interface ILongSubcripable : ISubscriptable<Long> {
|
||||
}
|
||||
}
|
||||
|
||||
private val subscribers = LinkedHashSet<L>(0)
|
||||
private val subscribers = ArrayList<L>(0)
|
||||
private val queue = ArrayList<L>(0)
|
||||
|
||||
override fun addListener(listener: LongConsumer): ISubscriptable.L {
|
||||
|
@ -31,7 +31,7 @@ interface ISubscriptable<V> {
|
||||
}
|
||||
}
|
||||
|
||||
private val subscribers = LinkedHashSet<L>(0)
|
||||
private val subscribers = ArrayList<L>(0)
|
||||
private val queue = ArrayList<L>(0)
|
||||
|
||||
override fun addListener(listener: Consumer<V>): ISubscriptable.L {
|
||||
|
@ -25,7 +25,7 @@ interface IUnitSubscripable : ISubscriptable<Unit> {
|
||||
}
|
||||
}
|
||||
|
||||
private val subscribers = LinkedHashSet<L>(0)
|
||||
private val subscribers = ArrayList<L>(0)
|
||||
private val queue = ArrayList<L>(0)
|
||||
|
||||
override fun addListener(listener: Runnable): ISubscriptable.L {
|
||||
|
Loading…
Reference in New Issue
Block a user