Github user rmetzger commented on a diff in the pull request: https://github.com/apache/flink/pull/1175#discussion_r40295722 --- Diff: flink-staging/flink-streaming/flink-streaming-core/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java --- @@ -516,6 +527,30 @@ public void registerType(Class<?> type) { } // -------------------------------------------------------------------------------------------- + // Time characteristic + // -------------------------------------------------------------------------------------------- + + /** + * Sets the time characteristic for the stream, e.g., processing time, event time, + * or ingestion time. + * + * @param characteristic The time characteristic. + */ + public void setStreamTimeCharacteristic(TimeCharacteristic characteristic) { --- End diff -- Are there plans to allow setting different time characteristics for different streams in the same topology? For example an ingestion time and a event time stream?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---