Пример #1
0
 final int markFuncall() {
   return m_usedF.size();
 }
Пример #2
0
 final synchronized void restoreFuncall(int mark) throws ReteException {
   while (m_usedF.size() > mark) {
     m_newF.push(m_usedF.pop());
   }
 }
Пример #3
0
 final synchronized Funcall getFuncall() throws ReteException {
   return m_usedF.push(m_newF.pop());
 }