Package org.omg.CORBA

Examples of org.omg.CORBA.UNKNOWN


            return ProxySupplierHelper.narrow(_servant.activate());
        } catch (Exception e)
        {
            logger_.error("obtain_notification_pull_supplier: unexpected error", e);

            throw new UNKNOWN(e.toString());
        }
    }
View Full Code Here


            return ProxySupplierHelper.narrow(_servant.activate());
        } catch (Exception e)
        {
            logger_.error("obtain_notification_push_supplier: unexpected error", e);

            throw new UNKNOWN();
        }
    }
View Full Code Here

            return org.omg.CosEventChannelAdmin.ProxyPullSupplierHelper.narrow(_servant.activate());
        } catch (Exception e)
        {
            logger_.error("obtain_pull_supplier: exception", e);

            throw new UNKNOWN();
        }
    }
View Full Code Here

            return org.omg.CosEventChannelAdmin.ProxyPushSupplierHelper.narrow(_servant.activate());
        } catch (Exception e)
        {
            logger_.error("obtain_push_supplier: exception", e);

            throw new UNKNOWN(e.toString());
        }
    }
View Full Code Here

              destroyState();

              if (_prepared)
                throw new org.omg.CosTransactions.HeuristicHazard();
              else
                throw new UNKNOWN();
            }
          }
        }
        catch (Exception e2)
        {
          e2.printStackTrace();

          throw new UNKNOWN();
        }
        finally
        {
          if (_prepared)
            destroyState();
View Full Code Here

              throw new org.omg.CosTransactions.HeuristicMixed();
            case XAException.XAER_NOTA:
            case XAException.XAER_PROTO:
              break;
            case XAException.XA_RETRY:
              throw new UNKNOWN();
            case XAException.XAER_INVAL:
            case XAException.XAER_RMFAIL: // resource manager
                            // failed, did it
                            // rollback?
              throw new org.omg.CosTransactions.HeuristicHazard();
            default:
              throw new org.omg.CosTransactions.HeuristicHazard();
            }
          }
        }
        catch (Exception e2)
        {
          _committed = false;

          throw new UNKNOWN();
        }
        finally
        {
          removeConnection();
        }
View Full Code Here

  }

  public void commit_subtransaction(Coordinator parent)
      throws SystemException
  {
    throw new UNKNOWN();
  }
View Full Code Here

    throw new UNKNOWN();
  }

  public void rollback_subtransaction() throws SystemException
  {
    throw new UNKNOWN();
  }
View Full Code Here

          case XAException.XAER_PROTO:
            break;
          case XAException.XAER_INVAL:
          case XAException.XAER_RMFAIL: // resource manager failed,
                          // did it rollback?
            throw new UNKNOWN();
          default:
            throw new UNKNOWN();
          }
        }
        catch (SystemException ex)
        {
          ex.printStackTrace();
         
          throw ex;
        }
        catch (org.omg.CosTransactions.HeuristicHazard ex)
        {
          throw ex;
        }
        catch (Exception e2)
        {
          if (jtaLogger.loggerI18N.isWarnEnabled())
          {
            jtaLogger.loggerI18N
                .warn(
                    "com.arjuna.ats.internal.jta.resources.jts.orbspecific.coperror",
                    e2);
          }

          e2.printStackTrace();
         
          throw new UNKNOWN();
        }
        finally
        {
          removeConnection();
        }
View Full Code Here

        try {
            unknown = (Throwable) in.read_value() ;
        } catch (ThreadDeath d) {
            throw d ;
        } catch (Throwable e) {
            unknown = new UNKNOWN( 0, CompletionStatus.COMPLETED_MAYBE ) ;
        }
    }
View Full Code Here

TOP

Related Classes of org.omg.CORBA.UNKNOWN

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.