You can continue to get the real-time state of input devices without using window events; maybe that's what you're hoping to do?
For the example given, you can simply use something like
if (sf::Keyboard::isKeypressed(sf::Keyboard::A))
aIsPressed = true;
to see if the A key is pressed, for example.