Socket Echo 기능 추가
This commit is contained in:
@@ -1,5 +1,27 @@
|
||||
package com.eactive.httpmockserver.socket;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import org.springframework.data.domain.Example;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
||||
public interface BytesMessageSpecService {
|
||||
public BytesMessageSpec findActiveBytesMessageSpec();
|
||||
|
||||
public List<BytesMessageSpec> findAllBytesMessageSpecs(Pageable pageable);
|
||||
|
||||
public List<BytesMessageSpec> findAllBytesMessageSpecs(Example<BytesMessageSpec> example, Pageable pageable);
|
||||
|
||||
public long getRecordsCount(Example<BytesMessageSpec> example);
|
||||
|
||||
public Optional<BytesMessageSpec> findById(Long id);
|
||||
|
||||
public BytesMessageSpec save(BytesMessageSpec spec);
|
||||
|
||||
public BytesMessageSpec update(BytesMessageSpec spec);
|
||||
|
||||
public void delete(Long id);
|
||||
|
||||
public void setUnuseOthers(Long id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user