org.apache.openjpa.ee.WASRegistryManagedRuntime Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openjpa.ee;
import com.ibm.wsspi.uow.UOWAction;
import com.ibm.wsspi.uow.UOWActionException;
import com.ibm.wsspi.uow.UOWException;
import com.ibm.wsspi.uow.UOWManager;
import com.ibm.wsspi.uow.UOWManagerFactory;
/**
* WASRegistryManagedRuntime provides WebSphere specific extensions to
* {@link RegistryManagedRuntime}. Currently these extensions consist of using
* the WebSphere UOWManager interface to submit non transactional work.
*/
public class WASRegistryManagedRuntime extends RegistryManagedRuntime {
/**
*
* RegistryManagedRuntime cannot suspend transactions, but WebSphere
* provides an interface to submit work outside of the current tran.
*
*/
public void doNonTransactionalWork(Runnable runnable)
throws RuntimeException, UnsupportedOperationException {
try {
UOWManagerFactory.getUOWManager().runUnderUOW(
UOWManager.UOW_TYPE_LOCAL_TRANSACTION, false,
new DelegatingUOWAction(runnable));
}
catch(UOWActionException e ) {
RuntimeException re = new RuntimeException(e.getMessage());
re.initCause(e);
throw re;
}
catch(UOWException e ) {
RuntimeException re = new RuntimeException(e.getMessage());
re.initCause(e);
throw re;
}
}
/**
* Delegate for the WebSphere proprietary UOWAction interface. Enables a
* {@link Runnable} to be passed in to the WebSphere UOWManager.
*/
class DelegatingUOWAction implements UOWAction {
Runnable _del;
public DelegatingUOWAction(Runnable delegate) {
_del = delegate;
}
public void run() throws Exception {
_del.run();
}
}
}