Package org.deuce.transaction.tl2cm

Examples of org.deuce.transaction.tl2cm.Context


public class ArrayContextsMap implements ContextsMap {

  private final Context[] arr = new Context[256];
 
  public Context get(int threadId) {
    Context context = arr[threadId];
    if (Status.INACTIVE != context.getStatus()) {
      return context;
    }
    else {
      return null;
    }
View Full Code Here

TOP

Related Classes of org.deuce.transaction.tl2cm.Context

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.