Search code examples
ibm-streamsinfosphere-spl

Can we use SPL time functions inside C++ operators?


I want to use toTimestamp function inside cpp.So I am accessing it like SPL::Functions::time::toTimestamp(Sys.YYYYMMDDhhmmss,date).Problem is that its unable to recognize 'Sys'. What library should I include?


Solution

  • Because the toTimestamp family of functions were designed to be called by SPL code, they're not easy to use directly in C++. (The reason being that they rely on generated tuple and enum types.) From C++, it's easier to use the timeStringToTimestamp family of functions.