Xepl Engine Virtual Machine 0.7.0.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Xepl Engine Virtual Machine 0.7.0.0 (Default branch)
# 1  
Old 02-05-2008
Xepl Engine Virtual Machine 0.7.0.0 (Default branch)

The XEVM is an XML processing engine. It's a multi-threaded, Pub/Sub environment for dynamic programming on an event-driven state machine with TCP communications, tight fault free memory management, powerful set algebra, and a magical database. It is 100% C++ (25,000 LOC), with a thin porting layer; there are implementations for POSIX (Mac/Linux) and Win32. The XEVM is for processing XEPL (the Xepl Engine Programming Language).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Providing virtual machine priority in kvm based virtual machines

Hi All, Is there any way I can prioritize my VMs when there is resource crunch in host machine so that some VMs will be allocated more vcpu, more memory than other VMs in kvm/qemu hypervisor based virtual machines? Lets say in my cloud environment my Ubuntu 16 compute hosts are running some... (0 Replies)
Discussion started by: SanjayK
0 Replies

2. AIX

IBM Virtual Machine OS on intel x86 and x64? IBM AIX OS on IBM Virtual Machine?

Hi There, I have zero information and zero knowledge for IBM virtual machine except Amazon cloud and VMware ESXi (Only Linux OS available). Anyone could provide me the following answer - Can IBM VM been deploy on X86 and X64 (Intel Chip)? If answer is yes any chance to deploy AIX OS... (13 Replies)
Discussion started by: chenyung
13 Replies

3. Red Hat

My RHEL virtual Machine Does not have Virtual Machine Manager Desktop Tool

My RHEL virtual Machine Does not have Virtual Machine Manager Desktop Tool Hi, I don't seem to have the Virtual Machine Manager Desktop tool set up on my RHEL6 Machine. The Linux machine runs off VMWare player and I'm not sure whether it is a VMWare software issue or a problem with the RHEL6... (2 Replies)
Discussion started by: accipiter1
2 Replies
Login or Register to Ask a Question
ost::BaseObject(3)					     Library Functions Manual						ost::BaseObject(3)

NAME
ost::BaseObject - BaseObject. SYNOPSIS
#include <persist.h> Public Member Functions BaseObject () This constructor is used in serialisation processes. virtual ~BaseObject () Default destructor. virtual const char * getPersistenceID () const This returns the ID of the persistent object (Its type) virtual bool write (Engine &archive) const This method is used to write to the Persistence::Engine It is not equivalent to the << operator as it writes only the data and not the object type etc. virtual bool read (Engine &archive) This method is used to read from a Persistence::Engine It is not equivalent to the >> operator as it does no typesafety or anything. Detailed Description BaseObject. This object is the base for all Persistent data which is not natively serialised by the Persistence::Engine It registers itself with the Persistence::TypeManager using a global constructor function. A matching deregister call is made in a global destructor, to allow DLL's to use the Persistence::Engine in a main executable. Persistable objects must never maintain bad pointers. If a pointer doesn't point to something valid, it must be NULL. This is so the persistence engine knows whether to allocate memory for an object or whether the memory has been pre-allocated. Author: Daniel Silverstone Base class for classes that will be persistent. Constructor &; Destructor Documentation ost::BaseObject::BaseObject () This constructor is used in serialisation processes. It is called in CreateNewInstance in order to create an instance of the class to have Read() called on it. virtual ost::BaseObject::~BaseObject () [virtual] Default destructor. Member Function Documentation virtual const char* ost::BaseObject::getPersistenceID () const [virtual] This returns the ID of the persistent object (Its type) virtual bool ost::BaseObject::read (Engine &archive) [virtual] This method is used to read from a Persistence::Engine It is not equivalent to the >> operator as it does no typesafety or anything. virtual bool ost::BaseObject::write (Engine &archive) const [virtual] This method is used to write to the Persistence::Engine It is not equivalent to the << operator as it writes only the data and not the object type etc. Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::BaseObject(3)