Added author + copyright

This commit is contained in:
nathan 2020-10-20 00:57:18 +02:00
parent 3e12e703ca
commit a26712c1cf
2 changed files with 38 additions and 5 deletions

View File

@ -1,8 +1,26 @@
/*
* Copyright 2020 dorkbox, llc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.objectPool
/**
* @author Abinav Janakiraman
*/
abstract class BoundedPoolObject<T>: PoolObject<T>() {
/**
* Called when an object is removed from the pool. Useful for logging how many objects are being removed
*/
open fun onRemoval(`object`: T) {}
}
}

View File

@ -1,3 +1,18 @@
/*
* Copyright 2020 dorkbox, llc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.objectPool.nonBlocking
import dorkbox.objectPool.BoundedPoolObject
@ -10,11 +25,11 @@ import java.util.concurrent.atomic.AtomicLong
* If the pool is empty, new objects will be created.
* The items added to pool will never expire or be automatically garbage collected.
* The items not added back to the pool will be garbage collected
* See [ObjectPool.NonBlockingSoftReference] for pooled objectsthat will expire/GC as needed
*
* @author dorkbox, llc
* See [ObjectPool.NonBlockingSoftReference] for pooled objects that will expire/GC as needed
*
* @author dorkbox, llc; Abinav Janakiraman
*/
internal class BoundedNonBlockingPool<T>(
private val poolObject: BoundedPoolObject<T>,
private val maxSize: Long,
@ -45,4 +60,4 @@ internal class BoundedNonBlockingPool<T>(
return poolObject.newInstance()
}
}
}