public class AsyncLowLevelInterface extends Object
| Constructor and Description |
|---|
AsyncLowLevelInterface(LowLevelInterface syncService,
ExecutorService executorService) |
public AsyncLowLevelInterface(LowLevelInterface syncService, ExecutorService executorService)
public void abortTransaction(Long tid, AsyncLowLevelInterface.AbortTransactionCallback callback)
public void addBooleanAttribute(Long tid, Long oid, String attributeName, Boolean value, AsyncLowLevelInterface.AddBooleanAttributeCallback callback)
public void addDoubleAttribute(Long tid, Long oid, String attributeName, Double value, AsyncLowLevelInterface.AddDoubleAttributeCallback callback)
public void addIntegerAttribute(Long tid, Long oid, String attributeName, Integer value, AsyncLowLevelInterface.AddIntegerAttributeCallback callback)
public void addReference(Long tid, Long oid, String referenceName, Long referenceOid, AsyncLowLevelInterface.AddReferenceCallback callback)
public void addStringAttribute(Long tid, Long oid, String attributeName, String value, AsyncLowLevelInterface.AddStringAttributeCallback callback)
public void commitTransaction(Long tid, String comment, AsyncLowLevelInterface.CommitTransactionCallback callback)
public void count(Long roid, String className, AsyncLowLevelInterface.CountCallback callback)
public void createObject(Long tid, String className, Boolean generateGuid, AsyncLowLevelInterface.CreateObjectCallback callback)
public void getBooleanAttribute(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetBooleanAttributeCallback callback)
public void getBooleanAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, AsyncLowLevelInterface.GetBooleanAttributeAtIndexCallback callback)
public void getBooleanAttributes(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetBooleanAttributesCallback callback)
public void getByteArrayAttribute(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetByteArrayAttributeCallback callback)
public void getByteArrayAttributes(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetByteArrayAttributesCallback callback)
public void getDataObjectByGuid(Long roid, String guid, AsyncLowLevelInterface.GetDataObjectByGuidCallback callback)
public void getDataObjectByOid(Long roid, Long oid, AsyncLowLevelInterface.GetDataObjectByOidCallback callback)
public void getDataObjects(Long roid, AsyncLowLevelInterface.GetDataObjectsCallback callback)
public void getDataObjectsByType(Long roid, String packageName, String className, Boolean flat, AsyncLowLevelInterface.GetDataObjectsByTypeCallback callback)
public void getDoubleAttribute(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetDoubleAttributeCallback callback)
public void getDoubleAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, AsyncLowLevelInterface.GetDoubleAttributeAtIndexCallback callback)
public void getDoubleAttributes(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetDoubleAttributesCallback callback)
public void getEnumAttribute(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetEnumAttributeCallback callback)
public void getIntegerAttribute(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetIntegerAttributeCallback callback)
public void getIntegerAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, AsyncLowLevelInterface.GetIntegerAttributeAtIndexCallback callback)
public void getIntegerAttributes(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetIntegerAttributesCallback callback)
public void getLongAttribute(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetLongAttributeCallback callback)
public void getLongAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, AsyncLowLevelInterface.GetLongAttributeAtIndexCallback callback)
public void getReference(Long tid, Long oid, String referenceName, AsyncLowLevelInterface.GetReferenceCallback callback)
public void getReferences(Long tid, Long oid, String referenceName, AsyncLowLevelInterface.GetReferencesCallback callback)
public void getStringAttribute(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetStringAttributeCallback callback)
public void getStringAttributes(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.GetStringAttributesCallback callback)
public void removeAllReferences(Long tid, Long oid, String referenceName, AsyncLowLevelInterface.RemoveAllReferencesCallback callback)
public void removeAttribute(Long tid, Long oid, String attributeName, Integer index, AsyncLowLevelInterface.RemoveAttributeCallback callback)
public void removeObject(Long tid, Long oid, AsyncLowLevelInterface.RemoveObjectCallback callback)
public void removeReference(Long tid, Long oid, String referenceName, Integer index, AsyncLowLevelInterface.RemoveReferenceCallback callback)
public void removeReferenceByOid(Long tid, Long oid, String referenceName, Long referencedOid, AsyncLowLevelInterface.RemoveReferenceByOidCallback callback)
public void setBooleanAttribute(Long tid, Long oid, String attributeName, Boolean value, AsyncLowLevelInterface.SetBooleanAttributeCallback callback)
public void setBooleanAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, Boolean value, AsyncLowLevelInterface.SetBooleanAttributeAtIndexCallback callback)
public void setBooleanAttributes(Long tid, Long oid, String attributeName, List<Boolean> values, AsyncLowLevelInterface.SetBooleanAttributesCallback callback)
public void setByteArrayAttribute(Long tid, Long oid, String attributeName, Byte[] value, AsyncLowLevelInterface.SetByteArrayAttributeCallback callback)
public void setDoubleAttribute(Long tid, Long oid, String attributeName, Double value, AsyncLowLevelInterface.SetDoubleAttributeCallback callback)
public void setDoubleAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, Double value, AsyncLowLevelInterface.SetDoubleAttributeAtIndexCallback callback)
public void setDoubleAttributes(Long tid, Long oid, String attributeName, List<Double> values, AsyncLowLevelInterface.SetDoubleAttributesCallback callback)
public void setEnumAttribute(Long tid, Long oid, String attributeName, String value, AsyncLowLevelInterface.SetEnumAttributeCallback callback)
public void setIntegerAttribute(Long tid, Long oid, String attributeName, Integer value, AsyncLowLevelInterface.SetIntegerAttributeCallback callback)
public void setIntegerAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, Integer value, AsyncLowLevelInterface.SetIntegerAttributeAtIndexCallback callback)
public void setIntegerAttributes(Long tid, Long oid, String attributeName, List<Integer> values, AsyncLowLevelInterface.SetIntegerAttributesCallback callback)
public void setLongAttribute(Long tid, Long oid, String attributeName, Long value, AsyncLowLevelInterface.SetLongAttributeCallback callback)
public void setLongAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, Long value, AsyncLowLevelInterface.SetLongAttributeAtIndexCallback callback)
public void setLongAttributes(Long tid, Long oid, String attributeName, List<Long> values, AsyncLowLevelInterface.SetLongAttributesCallback callback)
public void setReference(Long tid, Long oid, String referenceName, Long referenceOid, AsyncLowLevelInterface.SetReferenceCallback callback)
public void setStringAttribute(Long tid, Long oid, String attributeName, String value, AsyncLowLevelInterface.SetStringAttributeCallback callback)
public void setStringAttributeAtIndex(Long tid, Long oid, String attributeName, Integer index, String value, AsyncLowLevelInterface.SetStringAttributeAtIndexCallback callback)
public void setWrappedBooleanAttribute(Long tid, Long oid, String attributeName, String type, Boolean value, AsyncLowLevelInterface.SetWrappedBooleanAttributeCallback callback)
public void setWrappedDoubleAttribute(Long tid, Long oid, String attributeName, String type, Double value, AsyncLowLevelInterface.SetWrappedDoubleAttributeCallback callback)
public void setWrappedIntegerAttribute(Long tid, Long oid, String attributeName, String type, Integer value, AsyncLowLevelInterface.SetWrappedIntegerAttributeCallback callback)
public void setWrappedLongAttribute(Long tid, Long oid, String attributeName, String type, Long value, AsyncLowLevelInterface.SetWrappedLongAttributeCallback callback)
public void setWrappedStringAttribute(Long tid, Long oid, String attributeName, String type, String value, AsyncLowLevelInterface.SetWrappedStringAttributeCallback callback)
public void startTransaction(Long poid, AsyncLowLevelInterface.StartTransactionCallback callback)
public void unsetAttribute(Long tid, Long oid, String attributeName, AsyncLowLevelInterface.UnsetAttributeCallback callback)
public void unsetReference(Long tid, Long oid, String referenceName, AsyncLowLevelInterface.UnsetReferenceCallback callback)
Copyright © 2018 OpenSource BIM. All rights reserved.