All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmlens.trace.agent.bootstrap.parallize.operation.OperationThreadStart Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package com.vmlens.trace.agent.bootstrap.parallize.operation;

public class OperationThreadStart implements Operation {

	@Override
	public boolean createHappensBefore(Operation other) {
		
		return other instanceof OperationThreadBegin;
	}

	@Override
	public int hashCode() {
		int result = OperationIds.THREAD_START;
		return result;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
	
		return true;
	}
	
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy