An object needing finalization

It is recommended to sub-class Finalizable only on simple objects directly managing a limited resource. This use case is common when wrapping an extern instance with a standard object.

Introduced properties

fun finalize

core :: Finalizable :: finalize

Liberate any resources held by self before the memory holding self is freed

Redefined properties

redef type SELF: Finalizable

core $ Finalizable :: SELF

Type of this instance, automatically specialized in every class

All properties

fun !=(other: nullable Object): Bool

core :: Object :: !=

Have self and other different values?
fun ==(other: nullable Object): Bool

core :: Object :: ==

Have self and other the same value?
type CLASS: Class[SELF]

core :: Object :: CLASS

The type of the class of self.
type SELF: Object

core :: Object :: SELF

Type of this instance, automatically specialized in every class
protected fun class_factory(name: String): CLASS

core :: Object :: class_factory

Implementation used by get_class to create the specific class.
fun class_name: String

core :: Object :: class_name

The class name of the object.
fun finalize

core :: Finalizable :: finalize

Liberate any resources held by self before the memory holding self is freed
fun get_class: CLASS

core :: Object :: get_class

The meta-object representing the dynamic type of self.
fun hash: Int

core :: Object :: hash

The hash code of the object.
init init

core :: Object :: init

fun inspect: String

core :: Object :: inspect

Developer readable representation of self.
protected fun inspect_head: String

core :: Object :: inspect_head

Return "CLASSNAME:#OBJECTID".
intern fun is_same_instance(other: nullable Object): Bool

core :: Object :: is_same_instance

Return true if self and other are the same instance (i.e. same identity).
fun is_same_serialized(other: nullable Object): Bool

core :: Object :: is_same_serialized

Is self the same as other in a serialization context?
intern fun is_same_type(other: Object): Bool

core :: Object :: is_same_type

Return true if self and other have the same dynamic type.
private intern fun native_class_name: CString

core :: Object :: native_class_name

The class name of the object in CString format.
intern fun object_id: Int

core :: Object :: object_id

An internal hash code for the object based on its identity.
fun output

core :: Object :: output

Display self on stdout (debug only).
intern fun output_class_name

core :: Object :: output_class_name

Display class name on stdout (debug only).
fun serialization_hash: Int

core :: Object :: serialization_hash

Hash value use for serialization
intern fun sys: Sys

core :: Object :: sys

Return the global sys object, the only instance of the Sys class.
abstract fun to_jvalue(env: JniEnv): JValue

core :: Object :: to_jvalue

fun to_s: String

core :: Object :: to_s

User readable representation of self.
package_diagram core::Finalizable Finalizable core::Object Object core::Finalizable->core::Object core::FileStat FileStat core::FileStat->core::Finalizable core::FinalizableOnce FinalizableOnce core::FinalizableOnce->core::Finalizable core::Regex Regex core::Regex->core::Finalizable pthreads::Thread Thread pthreads::Thread->core::Finalizable pthreads::Mutex Mutex pthreads::Mutex->core::Finalizable pthreads::Barrier Barrier pthreads::Barrier->core::Finalizable core::U16String U16String core::U16String->core::Finalizable sdl2::SDL SDL sdl2::SDL->core::Finalizable app::Control Control app::Control->core::Finalizable core::FinalizableOnce... ... core::FinalizableOnce...->core::FinalizableOnce pthreads::Thread... ... pthreads::Thread...->pthreads::Thread app::CompositeControl CompositeControl app::CompositeControl->app::Control app::View View app::View->app::Control app::CompositeControl... ... app::CompositeControl...->app::CompositeControl app::View... ... app::View...->app::View

Parents

interface Object

core :: Object

The root of the class hierarchy.

Children

class Barrier

pthreads :: Barrier

Barrier synchronization tool
class Control

app :: Control

A control implementing the UI
class FileStat

core :: FileStat

Information on a file
class FinalizableOnce

core :: FinalizableOnce

An object to be finalized only once
class Mutex

pthreads :: Mutex

Mutual exclusion synchronization tool
class Regex

core :: Regex

A regular expression pattern
class SDL

sdl2 :: SDL

Holds the global methods of sdl2
abstract class Thread

pthreads :: Thread

Handle to a thread
class U16String

core :: U16String

UTF-16 encoded string

Descendants

abstract class Actor

actors :: Actor

Abstraction of an actor
class AppThread

popcorn :: AppThread

Thread running the App to test.
abstract class AsyncHttpRequest

app :: AsyncHttpRequest

Thread executing an HTTP request asynchronously
private class BSON

mongodb :: BSON

Everything inside MongoDB is manipulated as BSON Objects.
class BackButton

linux :: BackButton

Button to go back between windows
class BigInt

gmp :: BigInt

Multi precision Integer numbers.
class Button

app :: Button

A pressable button, raises ButtonPressEvent
class CheckBox

app :: CheckBox

Toggle control between two states, also displays a label
class ClientThread

popcorn :: ClientThread

Thread running the test client.
class Clock

realtime :: Clock

Keeps track of real time
class CompositeControl

app :: CompositeControl

A Control grouping other controls
private class Curl

curl :: Curl

Curl library handle
class GLfloatArray

glesv2 :: GLfloatArray

Low level array of Float
class HorizontalLayout

app :: HorizontalLayout

An horizontal linear organization
class HttpRequestClientWindow

app :: HttpRequestClientWindow

Simple window with a label and a button
class Label

app :: Label

A simple text label
abstract class Layout

app :: Layout

A layout to visually organize Controls
class ListLayout

app :: ListLayout

Scrollable list of views in a simple list
class MainThread

pthreads :: MainThread

The main thread of the program
class MongoClient

mongodb :: MongoClient

The MongoClient is used to connect to the mongo server and send queries.
class MongoCollection

mongodb :: MongoCollection

A Mongo collection.
class MongoCursor

mongodb :: MongoCursor

A MongoDB query cursor.
class MongoDb

mongodb :: MongoDb

A MongoDb database.
class MyHttpRequest

app :: MyHttpRequest

Simple asynchronous HTTP request to http://example.com/ displaying feedback to the window
private class MyThread

pthreads :: MyThread

class NLPServer

nlp :: NLPServer

Stanford web server
class PollFD

socket :: PollFD

Wrapper for the data structure used for polling on a socket
private class PoolThread

pthreads :: PoolThread

A Thread running in a threadpool
abstract class PopTask

popcorn :: PopTask

An abstract Popcorn task
class PthreadCond

pthreads :: PthreadCond

Condition variable
class Ratio

gmp :: Ratio

Multi precision Rational numbers.
class SecondWindow

app :: SecondWindow

Another window with a small VerticalLayout
class SimpleAsyncHttpRequest

app :: SimpleAsyncHttpRequest

Simple AsyncHttpRequest where uri is an attribute
class SocketAddress

socket :: SocketAddress

Address of a socket in the Internet namespace
class TableView

ios :: TableView

iOS specific layout using a UITableView, works only with simple children views
class TextInput

app :: TextInput

A control for the user to enter custom text
abstract class TextView

app :: TextView

A control displaying some text
class UiExampleWindow

app :: UiExampleWindow

Window showing off some the available controls
class VerticalLayout

app :: VerticalLayout

A vertical linear organization
abstract class View

app :: View

A visible Control
class Window

app :: Window

A window, root of the Control tree

Class definitions

core $ Finalizable
# An object needing finalization
#
# It is recommended to sub-class `Finalizable` only on
# simple objects directly managing a limited resource. This use case
# is common when wrapping an extern instance with a standard object.
class Finalizable

	# Liberate any resources held by `self` before the memory holding `self` is freed
	#
	# This method is invoked by the GC during a garbage collection when `self`
	# is no longer referenced. It can also be called by the user. Its implementation
	# must be planned accordingly and ensure that it may be invoked more than once.
	#
	# The object are not finialized in a topological order, it is safe for this method
	# to use attributes of this instances, unless theses attributes are finalizable as well
	# because they may have been finalized already.
	fun finalize do end
end
lib/core/gc.nit:21,1--38,3