GUACAMOLE-926: Improve response plumbing through to user.

This commit is contained in:
James Muehlner
2023-01-23 23:40:48 +00:00
parent 7d1d5cdf13
commit 9cdbe0fb36
12 changed files with 497 additions and 30 deletions

View File

@@ -90,4 +90,10 @@ public class DelegatingDirectory<ObjectType extends Identifiable>
directory.remove(identifier);
}
@Override
public void tryAtomically(AtomicDirectoryOperation<ObjectType> operation)
throws GuacamoleException {
directory.tryAtomically(operation);
}
}