All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.kotlin.com.intuit.playerui.j2v8.bridge.V8ObjectWrapper.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0-next.5
Show newest version
package com.intuit.playerui.j2v8.bridge

import com.eclipsesource.v8.V8Object

/**
 * Ceremonial interface that denotes if a structure is
 * providing functionality on top of a [V8Object] instance
 */
// TODO: Consider making this abstract and overriding equals and hashcode
internal interface V8ObjectWrapper {
    val v8Object: V8Object

    fun release() {
        v8Object.close()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy