3637383940414243
@Override public Vertex getVertex(final Direction direction) throws IllegalArgumentException { try { return future.get().getVertex(direction); } catch (Exception e) { throw new OException("Cannot retrieve getVertex()", e); } }
4546474849505152
@Override public String getLabel() { try { return future.get().getLabel(); } catch (Exception e) { throw new OException("Cannot retrieve label()", e); } }
4041424344454647
@Override public <T> T getProperty(final String key) { try { return future.get().getProperty(key); } catch (Exception e) { throw new OException("Cannot retrieve the requested information", e); } }
4950515253545556
@Override public Set<String> getPropertyKeys() { try { return future.get().getPropertyKeys(); } catch (Exception e) { throw new OException("Cannot retrieve the requested information", e); } }
5859606162636465
@Override public void setProperty(final String key, final Object value) { try { future.get().setProperty(key, value); } catch (Exception e) { throw new OException("Cannot retrieve the requested information", e); } }
6768697071727374
@Override public <T> T removeProperty(final String key) { try { return future.get().removeProperty(key); } catch (Exception e) { throw new OException("Cannot retrieve the requested information", e); } }
7677787980818283
@Override public void remove() { try { future.get().remove(); } catch (Exception e) { throw new OException("Cannot retrieve the requested information", e); } }
8586878889909192
@Override public Object getId() { try { return future.get().getId(); } catch (Exception e) { throw new OException("Cannot retrieve the requested information", e); } }
99100101102103104105106
@Override public ODocument getRecord() { try { return future.get().getRecord(); } catch (Exception e) { throw new OException("Cannot retrieve the requested information", e); } }
107108109110111112113114
public void reload() { try { future.get().reload(); } catch (Exception e) { throw new OException("Cannot reload current element", e); } }