blob: 0db8c1c848211a7bf700c8b174fef3ace21433bc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.internal.client;
import java.io.IOException;
import org.apache.ignite.client.proto.ClientMessagePacker;
/**
* Thin client payload output channel.
*/
public class PayloadOutputChannel implements AutoCloseable {
/** Client channel. */
private final ClientChannel ch;
/** Output stream. */
private final ClientMessagePacker out;
/**
* Constructor.
*
* @param ch Channel.
*/
PayloadOutputChannel(ClientChannel ch) {
out = new ClientMessagePacker();
this.ch = ch;
}
/**
* Gets client channel.
*
* @return Client channel.
*/
public ClientChannel clientChannel() {
return ch;
}
/**
* Gets the unpacker.
*
* @return Unpacker.
*/
public ClientMessagePacker out() {
return out;
}
/** {@inheritDoc} */
@Override public void close() throws IOException {
out.close();
}
}