Click or drag to resize
SoMemoryError Class

Memory error handling.

Inheritance Hierarchy

Namespace: OIV.Inventor.Errors
Assembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 9.9.13.0 (9.9.13.0)
Syntax
public class SoMemoryError : SoError

The SoMemoryError type exposes the following members.

Constructors
  NameDescription
Public methodSoMemoryError
Default constructor.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetDebugString

Returns debug string containing full error information from instance.

(Inherited from SoError.)
Public methodGetHashCode
Overrides GetHashCode().
(Inherited from SoNetBase.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberPost

Posts an error.

Public methodStatic memberSetHandlerCallback(SoErrorErrorCallback) Obsolete.
Obsolete. Use HandlerCallback property instead.
Public methodStatic memberSetHandlerCallback(SoErrorErrorUserDataCallback, Object) Obsolete.
Obsolete. Use HandlerCallback property instead.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyStatic memberHandlerCallback

Sets handler callback for SoMemoryError class.

Public propertyStatic memberMemoryCleanupHandler

Sets memory cleanup handler callback for SoMemoryError class.

Top
Remarks

SoMemoryError is used for errors reported due to lack of memory. See SoError for full discussion of error handling in Open Inventor.

The post() method takes a string describing the item that was to be allocated, such as "cylinder vertex array".

setMemoryCleanupCallback() can be used to set a handler function that will be called when a memory allocation fails. The function can release some memory to allow the allocation to succeed.

See Also