This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useRef, useState, memo, useEffect } from 'react'; | |
import PropTypes from 'prop-types'; | |
const noop = () => {}; | |
const DEFAULT_DEBOUNCE_TIMEOUT = 330; // ms | |
const Debounced = ({ children, value, onChange, timeout }) => { | |
const timeoutIdRef = useRef(null); | |
const [innerValue, setInnerValue] = useState(value); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package test.com.inpaas.http.wsdl; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.LinkedHashMap; | |
import java.util.LinkedHashSet; | |
import java.util.List; | |
import java.util.Set; | |
import com.fasterxml.jackson.core.JsonParseException; |