Skip to content

Unable to Bind timebase stream to java class in latest version 6.1.14 #244

Answered by alex-karpovich
ShivaniSK asked this question in Q&A
Discussion options

You must be logged in to vote

Greetings @ShivaniSK

Due to massive changes in QQL, now queries has names like "QUERY<radom_name>"
so you need to use next

options.typeLoader = new SimpleTypeLoader() {
            @Override
            public Class<?> load(ClassDescriptor cd) throws ClassNotFoundException {
                if (cd.getName().startsWith("QUERY"))
                    return TestMessage.class;
                return super.load(cd);
            }
        };

and please use 6.1.17

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@ShivaniSK
Comment options

Answer selected by alex-karpovich
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants