Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2cea055
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Aug 27, 2026
b6feacc
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Aug 27, 2026
9394099
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 2, 2026
cbb0052
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 2, 2026
d36ef1a
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 4, 2026
55feffd
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 4, 2026
ccb6f14
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 4, 2026
351fd2b
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 4, 2026
f7ce522
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 4, 2026
5533d45
Merge branch 'master' into IGNITE-27088
nizhikov Sep 7, 2026
fcdf587
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 7, 2026
8ff0498
Merge branch 'master' into IGNITE-27088
nizhikov Sep 7, 2026
d765ded
IGNITE-27088 BinaryWriter should use internal String#value
nizhikov Sep 7, 2026
3b1914a
Merge branch 'master' into IGNITE-27088
nizhikov Sep 8, 2026
b365c7f
CheapString prototype
nizhikov Sep 9, 2026
810cf79
IGNITE-29044 Move BinaryWriterSchemaHolder to binary-impl
nizhikov Sep 9, 2026
e853e56
Merge branch 'IGNITE-29044' into move_to_bin_impl
nizhikov Sep 9, 2026
5587e94
IGNITE-29044 Move BinaryWriterSchemaHolder to binary-impl
nizhikov Sep 9, 2026
71a153b
Merge branch 'master' into move_to_bin_impl
nizhikov Sep 9, 2026
788e0ed
IGNITE-29044 Move BinaryWriterSchemaHolder to binary-impl
nizhikov Sep 9, 2026
02bb629
IGNITE-29044 Move BinaryWriterSchemaHolder to binary-impl
nizhikov Sep 9, 2026
7eae07c
IGNITE-29044 Move BinaryWriterSchemaHolder to binary-impl
nizhikov Sep 9, 2026
c975deb
Merge branch 'IGNITE-27088' into move_to_bin_impl
nizhikov Sep 9, 2026
1b49f82
Merge branch 'master' into move_to_bin_impl
nizhikov Sep 23, 2026
c520afa
Merge branch 'master' into rmv_th_loc_ign
nizhikov Sep 23, 2026
a099aee
Merge branch 'master' into rmv_th_loc_ign
nizhikov Sep 23, 2026
1783943
Merge branch 'master' into move_to_bin_impl
nizhikov Sep 23, 2026
afa46c4
Merge branch 'master' into move_to_bin_impl
nizhikov Sep 24, 2026
f056c5e
IGNITE-27088 Review fixes
nizhikov Sep 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,9 @@ public default void detachAllowed(boolean detachAllowed) {
public default boolean hasCircularReferences() {
return false;
}

/** @return {@code true} if binary object has compact footer. */
public default boolean isCompactFooter() {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,6 @@
* Holder for handles.
*/
interface BinaryReaderHandlesHolder {
/**
* Set handle.
*
* @param obj Object.
*/
public void setHandle(Object obj);

/**
* Set handle.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@ class BinaryReaderHandlesHolderImpl implements BinaryReaderHandlesHolder {
/** Handles. */
private BinaryReaderHandles hnds;

/** {@inheritDoc} */
@Override public void setHandle(Object obj) {
throw new UnsupportedOperationException();
}

/** {@inheritDoc} */
@Override public void setHandle(Object obj, int pos) {
handles().put(pos, obj);
Expand Down
Loading
Loading