blob: 44a64b482f70802bb7f8f1b5a68fb32c411d895c [file] [log] [blame]
/*
* Copyright (c) 2018, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
package org.eclipse.persistence.testing.tests.simultaneous;
import org.eclipse.persistence.internal.sessions.UnitOfWorkImpl;
import org.eclipse.persistence.queries.ReadObjectQuery;
import org.eclipse.persistence.sessions.Session;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
import org.eclipse.persistence.testing.models.employee.domain.SmallProject;
public class Runner2 implements Runnable {
protected Object waitOn;
protected Object projPK;
protected Object empPK;
protected Session session;
public Runner2(Object waitOn, Object empPK, Object projPK, Session session) {
this.waitOn = waitOn;
this.projPK = projPK;
this.empPK = empPK;
this.session = session;
}
@Override
public void run() {
try {
UnitOfWorkImpl uow = (UnitOfWorkImpl)this.session.acquireUnitOfWork();;
ReadObjectQuery roq = new ReadObjectQuery(Employee.class);
roq.setSelectionCriteria(roq.getExpressionBuilder().get("id").equal(empPK));
Employee emp = (Employee)uow.executeQuery(roq);
roq = new ReadObjectQuery(SmallProject.class);
roq.setSelectionCriteria(roq.getExpressionBuilder().get("id").equal(projPK));
SmallProject project = (SmallProject)uow.executeQuery(roq);
project.setDescription("To changed");
emp.setFirstName("Name Change As Well");
synchronized (this.waitOn) {
try {
this.waitOn.wait();
} catch (InterruptedException e) {
}
}
uow.issueSQLbeforeCompletion(true);
uow.mergeClonesAfterCompletion();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}